about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/todofi.sh/default.nix
blob: afdbceb3417e22726832faa5324f08731be07690 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, coreutils
, gawk
, gnugrep
, gnused
, rofi
, todo-txt-cli
}:

stdenv.mkDerivation rec {
  pname = "todofi.sh";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "hugokernel";
    repo = "todofi.sh";
    rev = "v${version}";
    sha256 = "1gmy5inlghycsxiwnyyjyv81jn2fmfk3s9x78kcgyf7khzb5kwvj";
  };

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    install -Dm 755 todofi.sh -t $out/bin
  '';

  postFixup = ''
    patchShebangs $out/bin
    wrapProgram $out/bin/todofi.sh --prefix PATH : "${lib.makeBinPath [ coreutils gawk gnugrep gnused rofi todo-txt-cli ]}"
  '';

  meta = with lib; {
    description = "Todo-txt + Rofi = Todofi.sh";
    homepage = "https://github.com/hugokernel/todofi.sh";
    license = licenses.mit;
    maintainers = with maintainers; [ ewok ];
    platforms = platforms.linux;
  };
}