mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f2560115dc
The previous bump to version 1.6.1 left the sha256 of the src attribute unchanged, and as a consequence, it still built the old version. But since the make config injected the version number, the binary still self-reported as 1.6.1, even though it was built from 1.5.0.
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
|
, pkg-config, which, perl, libXrandr
|
|
, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver
|
|
, gtk3, wayland, wayland-protocols
|
|
, libXinerama, libnotify, pango, xorgproto, librsvg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dunst";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dunst-project";
|
|
repo = "dunst";
|
|
rev = "v${version}";
|
|
sha256 = "0lga1kj2vjbj9g9rl93nivngjmk5fkxdxwal8w96x9whwk9jvdga";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl pkg-config which systemd makeWrapper ];
|
|
|
|
buildInputs = [
|
|
cairo dbus gdk-pixbuf glib libX11 libXScrnSaver
|
|
libXinerama libnotify pango xorgproto librsvg libXrandr
|
|
gtk3 wayland wayland-protocols
|
|
];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"VERSION=$(version)"
|
|
"SYSCONFDIR=$(out)/etc"
|
|
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
|
|
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/dunst \
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight and customizable notification daemon";
|
|
homepage = "https://dunst-project.org/";
|
|
license = licenses.bsd3;
|
|
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|