13 stdenv.mkDerivation rec {
17 src = fetchFromGitHub {
21 sha256 = "1gmy5inlghycsxiwnyyjyv81jn2fmfk3s9x78kcgyf7khzb5kwvj";
24 nativeBuildInputs = [ makeWrapper ];
27 install -Dm 755 todofi.sh -t $out/bin
31 patchShebangs $out/bin
32 wrapProgram $out/bin/todofi.sh --prefix PATH : "${lib.makeBinPath [ coreutils gawk gnugrep gnused rofi todo-txt-cli ]}"
36 description = "Todo-txt + Rofi = Todofi.sh";
37 mainProgram = "todofi.sh";
38 homepage = "https://github.com/hugokernel/todofi.sh";
39 license = licenses.mit;
40 maintainers = with maintainers; [ ewok ];
41 platforms = platforms.linux;