nixpkgs/pkgs/applications/misc/tasksh/default.nix

24 lines
577 B
Nix
Raw Normal View History

2016-03-04 20:58:30 +00:00
{ stdenv, fetchurl, cmake, libuuid, gnutls }:
stdenv.mkDerivation rec {
name = "tasksh-${version}";
2016-10-09 15:36:55 +00:00
version = "1.1.0";
2016-03-04 20:58:30 +00:00
enableParallelBuilding = true;
src = fetchurl {
2016-10-09 15:36:55 +00:00
url = "http://taskwarrior.org/download/${name}.tar.gz";
sha256 = "0900nzfgvhcc106pl68d0v0qszvdc34yi59mw70b34b2gmkwdxzf";
2016-03-04 20:58:30 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "REPL for taskwarrior";
homepage = http://tasktools.org;
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.linux;
};
}