summary refs log tree commit diff
path: root/pkgs/development/libraries/libwnck
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-19 04:36:51 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2012-03-19 04:36:51 +0000
commitabec1469244264167e021ff2a50a71e70e3cf9aa (patch)
tree4645b410078a1b15e5811b965a7af3253a3a9d65 /pkgs/development/libraries/libwnck
parentb113433d51f5b1df076823deb6183c36789b1031 (diff)
downloadnixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar.gz
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar.bz2
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar.lz
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar.xz
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.tar.zst
nixlib-abec1469244264167e021ff2a50a71e70e3cf9aa.zip
Add libwnck3
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33254
Diffstat (limited to 'pkgs/development/libraries/libwnck')
-rw-r--r--pkgs/development/libraries/libwnck/3.x.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libwnck/3.x.nix b/pkgs/development/libraries/libwnck/3.x.nix
new file mode 100644
index 000000000000..59355f3c37d7
--- /dev/null
+++ b/pkgs/development/libraries/libwnck/3.x.nix
@@ -0,0 +1,13 @@
+{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool}:
+
+stdenv.mkDerivation {
+  name = "libwnck-3.2.1";
+
+  src = fetchurl {
+    url = mirror://gnome/sources/libwnck/3.2/libwnck-3.2.1.tar.xz;
+    sha256 = "1nm34rpr0n559x1ba4kmxbhqclvvnlz0g8xqbbj709q9irnmifpa";
+  };
+
+  buildInputs = [ pkgconfig intltool ];
+  propagatedBuildInputs = [ libX11 gtk3 ];
+}