f25e118432
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dunst/versions. These checks were done: - built on NixOS - ran ‘/nix/store/41nqz94x6682ylch4vhg5pca977ffsd0-dunst-1.3.2/bin/dunst -h’ got 0 exit code - ran ‘/nix/store/41nqz94x6682ylch4vhg5pca977ffsd0-dunst-1.3.2/bin/dunst --help’ got 0 exit code - ran ‘/nix/store/41nqz94x6682ylch4vhg5pca977ffsd0-dunst-1.3.2/bin/dunst -v’ and found version 1.3.2 - ran ‘/nix/store/41nqz94x6682ylch4vhg5pca977ffsd0-dunst-1.3.2/bin/dunst --version’ and found version 1.3.2 - found 1.3.2 with grep in /nix/store/41nqz94x6682ylch4vhg5pca977ffsd0-dunst-1.3.2 - directory tree listing: https://gist.github.com/e6f68836d92d5855b650ece5004da126
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, pkgconfig, which, perl, libXrandr
|
|
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
|
|
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dunst-${version}";
|
|
version = "1.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dunst-project";
|
|
repo = "dunst";
|
|
rev = "v${version}";
|
|
sha256 = "1kqlshaflp306yrjjmc28pghi1y5p24vdx4bxf8i4n9khdawb514";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl pkgconfig which systemd ];
|
|
|
|
buildInputs = [
|
|
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
|
libXinerama libnotify libxdg_basedir pango xproto librsvg libXrandr
|
|
];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
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";
|
|
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 ];
|
|
};
|
|
}
|