Merge pull request #89038 from r-ryantm/auto-update/tudu
tudu: 0.10.3 -> 0.10.4
This commit is contained in:
commit
0ee07b7086
1 changed files with 11 additions and 6 deletions
|
@ -1,20 +1,25 @@
|
|||
{ stdenv, fetchurl, ncurses }:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tudu";
|
||||
version = "0.10.3";
|
||||
version = "0.10.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://code.meskio.net/tudu/${pname}-${version}.tar.gz";
|
||||
sha256 = "0140pw457cd05ysws998yhd3b087j98q8m0g3s4br942l65b8n2y";
|
||||
sha256 = "14srqn968ii3sr4v6xc5zzs50dmm9am22lrm57j7n0rhjclwbssy";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
meta = {
|
||||
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 = stdenv.lib.licenses.gpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue