biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / volnoti / default.nix
blob560b9cce3fd4021865a6ca6709d0b07e1e93ba9d
1 { lib, stdenv, fetchFromGitHub, fetchpatch
2 , pkg-config, dbus, gdk-pixbuf, glib, libX11, gtk2, librsvg
3 , dbus-glib, autoreconfHook, wrapGAppsHook3 }:
5 stdenv.mkDerivation {
6   pname = "volnoti-unstable";
7   version = "2013-09-23";
9   src = fetchFromGitHub {
10     owner = "davidbrazdil";
11     repo = "volnoti";
12     rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
13     sha256 = "155lb7w563dkdkdn4752hl0zjhgnq3j4cvs9z98nb25k1xpmpki7";
14   };
16   patches = [
17     # Fix dbus interface headers. See
18     # https://github.com/davidbrazdil/volnoti/pull/10
19     (fetchpatch {
20       url = "https://github.com/davidbrazdil/volnoti/commit/623ad8ea5c3ac8720d00a2ced4b6163aae38c119.patch";
21       sha256 = "046zfdjmvhb7jrsgh04vfgi35sgy1zkrhd3bzdby3nvds1wslfam";
22     })
23   ];
25   nativeBuildInputs = [ pkg-config autoreconfHook wrapGAppsHook3 ];
27   buildInputs = [
28     dbus gdk-pixbuf glib libX11 gtk2 dbus-glib librsvg
29   ];
31   meta = with lib; {
32     description = "Lightweight volume notification for Linux";
33     homepage = "https://github.com/davidbrazdil/volnoti";
34     license = licenses.gpl3;
35     platforms = platforms.linux;
36     maintainers = [ ];
37   };