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

26 lines
674 B
Nix
Raw Normal View History

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