about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libgsf
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libgsf')
-rw-r--r--nixpkgs/pkgs/development/libraries/libgsf/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libgsf/default.nix b/nixpkgs/pkgs/development/libraries/libgsf/default.nix
new file mode 100644
index 000000000000..bcd37396bf7f
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libgsf/default.nix
@@ -0,0 +1,36 @@
+{ 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.
+    '';
+  };
+}