mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
b2681434a1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
43 lines
884 B
Nix
43 lines
884 B
Nix
{ 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;
|
|
};
|
|
}
|