My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/office/tudu/default.nix

25 lines
674 B

{ lib, 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 = lib.optionalString stdenv.cc.isClang ''
substituteInPlace configure \
--replace 'echo "main()' 'echo "int main()'
'';
meta = with lib; {
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
homepage = "https://code.meskio.net/tudu/";
license = licenses.gpl3;
platforms = platforms.unix;
};
}