summary refs log tree commit diff
path: root/pkgs/development/libraries/startup-notification
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-04 14:44:56 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-03-04 14:44:56 +0000
commit22065c11d9fab55418d826d80fcdac12671575f6 (patch)
treed399ccaeb1361cd79ac44a86e772439840f6593a /pkgs/development/libraries/startup-notification
parent9c75629a31a718f5a6f78534dea36bd85787ac7f (diff)
downloadnixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar.gz
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar.bz2
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar.lz
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar.xz
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.tar.zst
nixpkgs-22065c11d9fab55418d826d80fcdac12671575f6.zip
Adding 'awesome' (and two packages it was depending on)
svn path=/nixpkgs/trunk/; revision=20385
Diffstat (limited to 'pkgs/development/libraries/startup-notification')
-rw-r--r--pkgs/development/libraries/startup-notification/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/startup-notification/default.nix b/pkgs/development/libraries/startup-notification/default.nix
new file mode 100644
index 00000000000..d989c4059e6
--- /dev/null
+++ b/pkgs/development/libraries/startup-notification/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}:
+
+let
+  version = "0.10";
+in
+stdenv.mkDerivation {
+  name = "libstartup-notification-${version}";
+  src = fetchurl {
+    url = "http://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
+    sha256 = "0nalaay0yj3gq85insp9l31hsv5zp390m4nn37y235v151ffpfv4";
+  };
+
+  buildInputs = [ libX11 libxcb pkgconfig xcbutil ];
+
+  meta = {
+    homepage = http://www.freedesktop.org/software/startup-notification;
+    description = "Application startup notification and feedback library";
+    license = "BSD";
+  };
+}