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

31 lines
728 B
Nix
Raw Normal View History

2019-05-22 11:03:39 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk-pixbuf }:
2017-08-26 12:36:31 +00:00
stdenv.mkDerivation rec {
pname = "et";
2019-11-22 11:55:06 +00:00
version = "0.1.2";
2017-08-26 12:36:31 +00:00
src = fetchFromGitHub {
owner = "geistesk";
repo = "et";
2019-09-08 23:38:31 +00:00
rev = version;
2019-11-22 11:55:06 +00:00
sha256 = "0i0lgmnly8n7y4y6pb10pxgxyz8s5zk26k8z1g1578v1wan01lnq";
2017-08-26 12:36:31 +00:00
};
2019-05-22 11:03:39 +00:00
buildInputs = [ libnotify gdk-pixbuf ];
2017-08-26 12:36:31 +00:00
nativeBuildInputs = [ pkgconfig ];
installPhase = ''
mkdir -p $out/bin
cp et $out/bin
cp et-status.sh $out/bin/et-status
'';
meta = with stdenv.lib; {
2017-10-21 13:14:50 +00:00
description = "Minimal libnotify-based (egg) timer";
2019-11-22 11:55:06 +00:00
homepage = "https://github.com/geistesk/et";
2017-08-26 12:36:31 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ geistesk ];
};
}