mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
26 lines
683 B
Nix
26 lines
683 B
Nix
{ stdenv, fetchurl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tudu";
|
|
version = "0.10.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://code.meskio.net/tudu/${pname}-${version}.tar.gz";
|
|
sha256 = "14srqn968ii3sr4v6xc5zzs50dmm9am22lrm57j7n0rhjclwbssy";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.cc.isClang ''
|
|
substituteInPlace configure \
|
|
--replace 'echo "main()' 'echo "int main()'
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
|
|
homepage = "https://code.meskio.net/tudu/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|