nixpkgs/pkgs/applications/office/tudu/default.nix

26 lines
674 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses }:
2015-12-01 05:52:28 -05:00
2020-05-27 21:20:20 -04:00
stdenv.mkDerivation rec {
pname = "tudu";
2020-05-27 13:57:28 -04:00
version = "0.10.4";
2015-12-01 05:52:28 -05:00
src = fetchurl {
url = "https://code.meskio.net/tudu/${pname}-${version}.tar.gz";
2020-05-27 13:57:28 -04:00
sha256 = "14srqn968ii3sr4v6xc5zzs50dmm9am22lrm57j7n0rhjclwbssy";
2015-12-01 05:52:28 -05:00
};
buildInputs = [ ncurses ];
2021-01-15 00:42:41 -05:00
preConfigure = lib.optionalString stdenv.cc.isClang ''
2020-05-27 21:20:20 -04:00
substituteInPlace configure \
--replace 'echo "main()' 'echo "int main()'
'';
meta = with lib; {
2015-12-01 05:52:28 -05:00
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
homepage = "https://code.meskio.net/tudu/";
2020-05-27 21:20:20 -04:00
license = licenses.gpl3;
platforms = platforms.unix;
2015-12-01 05:52:28 -05:00
};
}