2016-11-06 11:58:29 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch
|
2018-01-21 15:01:58 +00:00
|
|
|
, pkgconfig, which, perl, libXrandr
|
|
|
|
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
|
2017-07-15 12:54:18 +00:00
|
|
|
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
2013-03-20 20:19:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-24 11:03:04 +00:00
|
|
|
name = "dunst-${version}";
|
2018-01-30 12:46:47 +00:00
|
|
|
version = "1.3.1";
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 11:03:04 +00:00
|
|
|
src = fetchFromGitHub {
|
2017-07-15 12:54:18 +00:00
|
|
|
owner = "dunst-project";
|
2016-05-24 11:03:04 +00:00
|
|
|
repo = "dunst";
|
|
|
|
rev = "v${version}";
|
2018-01-30 12:46:47 +00:00
|
|
|
sha256 = "0i518v2z9fklzl5w60gkwwmg30yz3bd0k4rxjrxjabx73pvxm1mz";
|
2013-03-20 20:19:43 +00:00
|
|
|
};
|
|
|
|
|
2018-01-21 15:01:58 +00:00
|
|
|
nativeBuildInputs = [ perl pkgconfig which systemd ];
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 11:03:04 +00:00
|
|
|
buildInputs = [
|
2017-07-15 12:54:18 +00:00
|
|
|
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
2018-01-21 15:01:58 +00:00
|
|
|
libXinerama libnotify libxdg_basedir pango xproto librsvg libXrandr
|
2016-05-24 11:03:04 +00:00
|
|
|
];
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 11:03:04 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2015-06-04 06:42:37 +00:00
|
|
|
|
2018-01-21 15:01:58 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"VERSION=$(version)"
|
|
|
|
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
|
|
|
|
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
|
|
|
|
];
|
2016-05-24 11:03:04 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight and customizable notification daemon";
|
2018-01-21 15:01:58 +00:00
|
|
|
homepage = https://dunst-project.org/;
|
2016-05-24 11:03:04 +00:00
|
|
|
license = licenses.bsd3;
|
2013-03-22 12:00:49 +00:00
|
|
|
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
2016-05-24 11:03:04 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-03-20 20:19:43 +00:00
|
|
|
};
|
|
|
|
}
|