about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/startup-notification
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/startup-notification')
-rw-r--r--nixpkgs/pkgs/development/libraries/startup-notification/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/startup-notification/default.nix b/nixpkgs/pkgs/development/libraries/startup-notification/default.nix
new file mode 100644
index 000000000000..fc771a493b6d
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/startup-notification/default.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, libX11, libxcb, pkgconfig, xcbutil}:
+
+let
+  version = "0.12";
+in
+stdenv.mkDerivation {
+  name = "libstartup-notification-${version}";
+  src = fetchurl {
+    url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz";
+    sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ libX11 libxcb xcbutil ];
+
+  meta = {
+    homepage = http://www.freedesktop.org/software/startup-notification;
+    description = "Application startup notification and feedback library";
+    license = stdenv.lib.licenses.lgpl2;
+  };
+}