aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/misc/et/default.nix
blob: 2cf8813aac402c16a8b0ca7bcddaef7a6b74ac14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk-pixbuf }:

stdenv.mkDerivation rec {
  pname = "et";
  version = "0.1.2";

  src = fetchFromGitHub {
    owner = "geistesk";
    repo = "et";
    rev = version;
    sha256 = "0i0lgmnly8n7y4y6pb10pxgxyz8s5zk26k8z1g1578v1wan01lnq";
  };

  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";
    homepage = "https://github.com/geistesk/et";
    license = licenses.gpl3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ geistesk ];
  };
}