tasksh: init at 1.0.0

This commit is contained in:
Matthias Beyer
2016-03-04 21:59:01 +01:00
parent 247e248a46
commit abea96a28d
2 changed files with 25 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, cmake, libuuid, gnutls }:
stdenv.mkDerivation rec {
name = "tasksh-${version}";
version = "1.0.0";
enableParallelBuilding = true;
src = fetchurl {
url = "http://taskwarrior.org/download/tasksh-latest.tar.gz";
sha256 = "0ll6pwhw4wsdffacsmpq46fqh084p9mdaa777giqbag3b8gwik4s";
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "REPL for taskwarrior";
homepage = http://tasktools.org;
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.linux;
};
}