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

31 lines
716 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, 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 {
2020-08-15 14:04:43 +00:00
owner = "oxzi";
2017-08-26 12:36:31 +00:00
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 ];
nativeBuildInputs = [ pkg-config ];
2017-08-26 12:36:31 +00:00
installPhase = ''
mkdir -p $out/bin
cp et $out/bin
cp et-status.sh $out/bin/et-status
'';
meta = with lib; {
2017-10-21 13:14:50 +00:00
description = "Minimal libnotify-based (egg) timer";
2020-08-15 14:04:43 +00:00
homepage = "https://github.com/oxzi/et";
2017-08-26 12:36:31 +00:00
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ oxzi ];
2017-08-26 12:36:31 +00:00
};
}