mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
|
|
, python, perl, gdk_pixbuf, libiconv, libintl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgsf-1.14.44";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libgsf/1.14/${name}.tar.xz";
|
|
sha256 = "1ppzfk3zmmgrg9jh8vc4dacddbfngjslq2wpj94pcr3i0c8dxgk8";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool libintl ];
|
|
|
|
buildInputs = [ gettext bzip2 zlib python ];
|
|
checkInputs = [ perl ];
|
|
|
|
propagatedBuildInputs = [ libxml2 glib gdk_pixbuf libiconv ];
|
|
|
|
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.
|
|
'';
|
|
};
|
|
}
|