et: init at 2017-03-04 (#28427)
This commit is contained in:
parent
132c2a8ec5
commit
ffa499f9ec
@ -215,6 +215,7 @@
|
|||||||
garrison = "Jim Garrison <jim@garrison.cc>";
|
garrison = "Jim Garrison <jim@garrison.cc>";
|
||||||
gavin = "Gavin Rogers <gavin@praxeology.co.uk>";
|
gavin = "Gavin Rogers <gavin@praxeology.co.uk>";
|
||||||
gebner = "Gabriel Ebner <gebner@gebner.org>";
|
gebner = "Gabriel Ebner <gebner@gebner.org>";
|
||||||
|
geistesk = "Alvar Penning <post@0x21.biz>";
|
||||||
georgewhewell = "George Whewell <georgerw@gmail.com>";
|
georgewhewell = "George Whewell <georgerw@gmail.com>";
|
||||||
gilligan = "Tobias Pflug <tobias.pflug@gmail.com>";
|
gilligan = "Tobias Pflug <tobias.pflug@gmail.com>";
|
||||||
giogadi = "Luis G. Torres <lgtorres42@gmail.com>";
|
giogadi = "Luis G. Torres <lgtorres42@gmail.com>";
|
||||||
|
30
pkgs/applications/misc/et/default.nix
Normal file
30
pkgs/applications/misc/et/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk_pixbuf }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "et-${version}";
|
||||||
|
version = "2017-03-04";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "geistesk";
|
||||||
|
repo = "et";
|
||||||
|
rev = "151e9b6bc0d2d4f45bda8ced740ee99d0f2012f6";
|
||||||
|
sha256 = "1a1jdnzmal05k506bbvzlwsj2f3kql6l5xc1gdabm79y6vaf4r7s";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libnotify gdk_pixbuf ];
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp et $out/bin
|
||||||
|
cp et-status.sh $out/bin/et-status
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Minimal libnotify-based (egg) timer for GNU/Linux";
|
||||||
|
homepage = https://github.com/geistesk/et;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ geistesk ];
|
||||||
|
};
|
||||||
|
}
|
@ -1007,6 +1007,8 @@ with pkgs;
|
|||||||
|
|
||||||
ephemeralpg = callPackage ../applications/misc/ephemeralpg {};
|
ephemeralpg = callPackage ../applications/misc/ephemeralpg {};
|
||||||
|
|
||||||
|
et = callPackage ../applications/misc/et {};
|
||||||
|
|
||||||
f3 = callPackage ../tools/filesystems/f3 { };
|
f3 = callPackage ../tools/filesystems/f3 { };
|
||||||
|
|
||||||
facedetect = callPackage ../tools/graphics/facedetect { };
|
facedetect = callPackage ../tools/graphics/facedetect { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user