nixpkgs/pkgs/applications/office/tudu/default.nix
R. RyanTM f4bc95f26b tudu: 0.10.2 -> 0.10.3
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
2019-08-06 00:09:59 -07:00

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;
};
}