dunst: 1.2.0 -> 1.3.0
This commit is contained in:
parent
5402412b97
commit
9ab8c28e3d
@ -1,34 +1,39 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchpatch
|
{ stdenv, fetchFromGitHub, fetchpatch
|
||||||
, pkgconfig, which, perl, gtk2, xrandr
|
, pkgconfig, which, perl, libXrandr
|
||||||
, cairo, dbus, gdk_pixbuf, glib, libX11, libXScrnSaver
|
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
|
||||||
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "dunst-${version}";
|
name = "dunst-${version}";
|
||||||
version = "1.2.0";
|
version = "1.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dunst-project";
|
owner = "dunst-project";
|
||||||
repo = "dunst";
|
repo = "dunst";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0jncnb4z4hg92ws08bkf52jswsd4vqlzyznwbynhh2jh6q0sl18b";
|
sha256 = "1085v4193yfj8ksngp4mk5n0nwzr3s5y3cs3c74ymaldfl20x91k";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ perl pkgconfig which ];
|
nativeBuildInputs = [ perl pkgconfig which systemd ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
||||||
libXinerama libnotify libxdg_basedir pango xproto librsvg gtk2 xrandr
|
libXinerama libnotify libxdg_basedir pango xproto librsvg libXrandr
|
||||||
];
|
];
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
|
makeFlags = [
|
||||||
|
"PREFIX=$(out)"
|
||||||
|
"VERSION=$(version)"
|
||||||
|
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
|
||||||
|
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Lightweight and customizable notification daemon";
|
description = "Lightweight and customizable notification daemon";
|
||||||
homepage = http://www.knopwob.org/dunst/;
|
homepage = https://dunst-project.org/;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user