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

37 lines
1 KiB
Nix
Raw Normal View History

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