f4bc95f26b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tudu/versions
21 lines
530 B
Nix
21 lines
530 B
Nix
{ stdenv, fetchurl, ncurses }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tudu-${version}";
|
|
version = "0.10.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://code.meskio.net/tudu/${name}.tar.gz";
|
|
sha256 = "0140pw457cd05ysws998yhd3b087j98q8m0g3s4br942l65b8n2y";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
meta = {
|
|
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;
|
|
};
|
|
}
|