pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkg-config, glibmm, libgda, libxml2, gnome3
|
||||
{ lib, stdenv, fetchurl, pkg-config, glibmm, libgda, libxml2, gnome3
|
||||
, mysqlSupport ? false
|
||||
, postgresSupport ? false }:
|
||||
|
||||
@@ -13,7 +13,7 @@ in stdenv.mkDerivation rec {
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1fyh15b3f8hmwbswalxk1g4l04yvvybksn5nm7gznn5jl5q010p9";
|
||||
};
|
||||
|
||||
@@ -29,7 +29,7 @@ in stdenv.mkDerivation rec {
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "C++ bindings for libgda";
|
||||
homepage = "https://www.gnome-db.org/";
|
||||
license = licenses.lgpl21Plus;
|
||||
|
||||
Reference in New Issue
Block a user