nixpkgs/pkgs/development/libraries/libgsf/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
, perl, gdk-pixbuf, libiconv, libintl, gnome3 }:
stdenv.mkDerivation rec {
2018-12-24 06:22:07 +03:00
pname = "libgsf";
version = "1.14.46";
src = fetchurl {
2018-12-24 06:22:07 +03:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0bddmlzg719sjhlbzqlhb7chwk93qc7g68m2r9r8xz112jdradpa";
};
2018-03-14 22:15:06 +03:00
nativeBuildInputs = [ pkgconfig intltool libintl ];
buildInputs = [ gettext bzip2 zlib ];
2018-08-08 21:48:18 +03:00
checkInputs = [ perl ];
2019-05-22 14:03:39 +03:00
propagatedBuildInputs = [ libxml2 glib gdk-pixbuf libiconv ];
2017-03-30 23:51:15 +03:00
outputs = [ "out" "dev" ];
doCheck = true;
preCheck = "patchShebangs ./tests/";
2018-12-24 06:22:07 +03:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with stdenv.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;
longDescription = ''
Libgsf aims to provide an efficient extensible I/O abstraction for
dealing with different structured file formats.
'';
};
}