ctodo: 1.2 -> 1.3

authored by Matthias Beyer and committed by Bjørn Forsman 30a1e189 678c149e

+5 -7
+5 -7
pkgs/applications/misc/ctodo/default.nix
··· 1 - { stdenv, cmake, fetchurl, ncurses }: 2 3 - let 4 - version = "1.2"; 5 - in 6 - stdenv.mkDerivation { 7 name = "ctodo-${version}"; 8 9 src = fetchurl { 10 url = "https://github.com/Acolarh/ctodo/archive/v${version}.tar.gz"; 11 - sha256 = "0kjd84q8aw238z09yz9n1p732fh08vijaf8bk1xqlx544cgyfcjm"; 12 }; 13 14 - buildInputs = [ stdenv cmake ncurses ]; 15 16 configurePhase = '' 17 cmake -DCMAKE_INSTALL_PREFIX=$out .
··· 1 + { stdenv, cmake, fetchurl, ncurses, readline }: 2 3 + stdenv.mkDerivation rec { 4 name = "ctodo-${version}"; 5 + version = "1.3"; 6 7 src = fetchurl { 8 url = "https://github.com/Acolarh/ctodo/archive/v${version}.tar.gz"; 9 + sha256 = "1k3raigcgpwa0h8zkv5x9rycnn2iqkb9qim4q9ydqy9wbv3m32jb"; 10 }; 11 12 + buildInputs = [ stdenv cmake ncurses readline ]; 13 14 configurePhase = '' 15 cmake -DCMAKE_INSTALL_PREFIX=$out .