f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
526 B
Nix
21 lines
526 B
Nix
{ stdenv, fetchurl, ncurses }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tudu-${version}";
|
|
version = "0.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://code.meskio.net/tudu/${name}.tar.gz";
|
|
sha256 = "0571wh5hn0hgadyx34zq1zi35pzd7vpwkavm7kzb9hwgn07443x4";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
meta = {
|
|
description = "ncurses-based hierarchical todo list manager with vim-like keybindings";
|
|
homepage = http://code.meskio.net/tudu/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|