nixpkgs/pkgs/applications/misc/dunst/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

{ 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
}:
stdenv.mkDerivation rec {
name = "dunst-${version}";
2018-01-30 12:46:47 +00:00
version = "1.3.1";
src = fetchFromGitHub {
2017-07-15 12:54:18 +00:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
2018-01-30 12:46:47 +00:00
sha256 = "0i518v2z9fklzl5w60gkwwmg30yz3bd0k4rxjrxjabx73pvxm1mz";
};
2018-01-21 15:01:58 +00:00
nativeBuildInputs = [ perl pkgconfig which systemd ];
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
];
outputs = [ "out" "man" ];
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"
];
meta = with stdenv.lib; {
description = "Lightweight and customizable notification daemon";
2018-01-21 15:01:58 +00:00
homepage = https://dunst-project.org/;
license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
platforms = platforms.linux;
maintainers = [ maintainers.domenkozar ];
};
}