about summary refs log tree commit diff
path: root/pkgs/development/libraries/appstream-glib
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-04-10 17:02:57 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-04-25 12:02:33 +0200
commitdb3b86560f11437e260ae6d6661c69fb5bb36c75 (patch)
tree7d21ce8f78907ea1e6ac97b9283ea13da9d7fc05 /pkgs/development/libraries/appstream-glib
parent38d6aec3f630b4ef012f902482ef0ad5a5170844 (diff)
downloadnixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.gz
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.bz2
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.lz
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.xz
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.zst
nixlib-db3b86560f11437e260ae6d6661c69fb5bb36c75.zip
GNOME 3.16.1, closes #7357
Diffstat (limited to 'pkgs/development/libraries/appstream-glib')
-rw-r--r--pkgs/development/libraries/appstream-glib/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/appstream-glib/default.nix b/pkgs/development/libraries/appstream-glib/default.nix
new file mode 100644
index 000000000000..14fbcdf7342c
--- /dev/null
+++ b/pkgs/development/libraries/appstream-glib/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, gettext, gtk3, intltool, glib
+, gtk_doc, autoconf, automake, libtool, libarchive, libyaml
+, gobjectIntrospection, sqlite, libsoup, gcab, attr, acl, docbook_xsl
+}:
+
+stdenv.mkDerivation rec {
+  name = "appstream-glib-0.3.6";
+
+  src = fetchurl {
+    url = "https://github.com/hughsie/appstream-glib/archive/appstream_glib_0_3_6.tar.gz";
+    sha256 = "1zdxg9dk9vxw2cs04cswd138di3dysz0hxk4918750hh19s3859c";
+  };
+
+  buildInputs = [ glib libtool pkgconfig gtk_doc gettext intltool sqlite libsoup
+                  gcab attr acl docbook_xsl
+                  libarchive libyaml gtk3 autoconf automake gobjectIntrospection ];
+
+  configureScript = "./autogen.sh";
+
+  meta = with stdenv.lib; {
+    description = "Objects and helper methods to read and write AppStream metadata";
+    homepage    = https://github.com/hughsie/appstream-glib;
+    license     = licenses.lgpl21Plus;
+    platforms   = platforms.linux;
+    maintainers = with maintainers; [ lethalman ];
+  };
+
+}