nixpkgs/pkgs/tools/misc/notify-desktop/default.nix
Matthew Bauer 02297beade treewide: add version to packages
Lots of packages are missing versions in their name. This adds them
where appropriate. These were found with this command:

 $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$'

See issue #41007.
2018-05-25 15:48:05 -05:00

34 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, dbus, pkgconfig }:
stdenv.mkDerivation rec {
name = "notify-desktop-${version}";
version = "0.2.0";
src = fetchFromGitHub {
owner = "nowrep";
repo = "notify-desktop";
rev = "9863919fb4ce7820810ac14a09a46ee73c3d56cc";
sha256 = "1brcvl2fx0yzxj9mc8hzfl32zdka1f1bxpzsclcsjplyakyinr1a";
};
buildInputs = [ dbus pkgconfig ];
installPhase = ''
mkdir -p $out/bin
install -m 755 bin/notify-desktop $out/bin/notify-desktop
'';
meta = with stdenv.lib; {
description = "Little application that lets you send desktop notifications with one command";
longDescription = ''
It's basically clone of notify-send from libnotify,
but it supports reusing notifications on screen by passing its ID.
It also does not use any external dependencies (except from libdbus of course).
'';
homepage = "https://github.com/nowrep/notify-desktop";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ ylwghst ];
};
}