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

37 lines
1.0 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
2018-03-14 19:15:06 +00:00
, python, perl, gdk_pixbuf, libiconv, libintl }:
stdenv.mkDerivation rec {
2018-09-05 14:55:35 +00:00
name = "libgsf-1.14.44";
src = fetchurl {
url = "mirror://gnome/sources/libgsf/1.14/${name}.tar.xz";
2018-09-05 14:55:35 +00:00
sha256 = "1ppzfk3zmmgrg9jh8vc4dacddbfngjslq2wpj94pcr3i0c8dxgk8";
};
2018-03-14 19:15:06 +00:00
nativeBuildInputs = [ pkgconfig intltool libintl ];
2018-08-08 18:48:18 +00:00
buildInputs = [ gettext bzip2 zlib python ];
checkInputs = [ perl ];
2018-03-14 19:15:06 +00:00
propagatedBuildInputs = [ libxml2 glib gdk_pixbuf libiconv ];
2017-03-30 20:51:15 +00:00
outputs = [ "out" "dev" ];
doCheck = true;
preCheck = "patchShebangs ./tests/";
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.
'';
};
}