pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkg-config, intltool, gettext, glib, libxml2, zlib, bzip2
|
||||
{ fetchurl, lib, stdenv, pkg-config, intltool, gettext, glib, libxml2, zlib, bzip2
|
||||
, perl, gdk-pixbuf, libiconv, libintl, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
|
||||
version = "1.14.47";
|
||||
|
||||
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 = "0kbpp9ksl7977xiga37sk1gdw1r039v6zviqznl7alvvg39yp26i";
|
||||
};
|
||||
|
||||
@@ -28,12 +28,12 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "GNOME's Structured File Library";
|
||||
homepage = "https://www.gnome.org/projects/libgsf";
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
platforms = lib.platforms.unix;
|
||||
|
||||
longDescription = ''
|
||||
Libgsf aims to provide an efficient extensible I/O abstraction for
|
||||
|
||||
Reference in New Issue
Block a user