2016-11-04 15:51:05 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch
|
2019-05-22 13:03:39 +02:00
|
|
|
, pkgconfig, dbus, gdk-pixbuf, glib, libX11, gtk2, librsvg
|
2018-02-25 03:23:58 +01:00
|
|
|
, dbus-glib, autoreconfHook, wrapGAppsHook }:
|
2016-11-04 15:51:05 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "volnoti-unstable";
|
2016-11-04 15:51:05 +01:00
|
|
|
version = "2013-09-23";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "davidbrazdil";
|
|
|
|
repo = "volnoti";
|
|
|
|
rev = "4af7c8e54ecc499097121909f02ecb42a8a60d24";
|
|
|
|
sha256 = "155lb7w563dkdkdn4752hl0zjhgnq3j4cvs9z98nb25k1xpmpki7";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Fix dbus interface headers. See
|
|
|
|
# https://github.com/davidbrazdil/volnoti/pull/10
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/davidbrazdil/volnoti/pull/10.patch";
|
|
|
|
sha256 = "046zfdjmvhb7jrsgh04vfgi35sgy1zkrhd3bzdby3nvds1wslfam";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-05-22 13:03:39 +02:00
|
|
|
dbus gdk-pixbuf glib libX11 gtk2 dbus-glib librsvg
|
2016-11-04 15:51:05 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight volume notification for Linux";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/davidbrazdil/volnoti";
|
2016-11-04 15:51:05 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.gilligan ];
|
|
|
|
};
|
|
|
|
}
|