summary refs log tree commit diff
path: root/pkgs/development/libraries/gcab
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/gcab
parent38d6aec3f630b4ef012f902482ef0ad5a5170844 (diff)
downloadnixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.gz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.bz2
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.lz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.xz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.zst
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.zip
GNOME 3.16.1, closes #7357
Diffstat (limited to 'pkgs/development/libraries/gcab')
-rw-r--r--pkgs/development/libraries/gcab/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gcab/default.nix b/pkgs/development/libraries/gcab/default.nix
new file mode 100644
index 00000000000..5a8b1f2fcbc
--- /dev/null
+++ b/pkgs/development/libraries/gcab/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchurl, intltool, gobjectIntrospection, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "gcab-0.6";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/gcab/0.6/${name}.tar.xz";
+    sha256 = "a0443b904bfa7227b5155bfcdf9ea9256b6e26930b8febe1c41f972f6f1334bb";
+  };
+
+  buildInputs = [ intltool gobjectIntrospection pkgconfig ];
+
+  meta = with stdenv.lib; {
+    platforms = platforms.linux;
+    maintainers = [ maintainers.lethalman ];
+  };
+
+}