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

25 lines
587 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, readline }:
2016-03-04 20:58:30 +00:00
stdenv.mkDerivation rec {
name = "tasksh-${version}";
2017-08-17 14:29:44 +00:00
version = "1.2.0";
2016-03-04 20:58:30 +00:00
enableParallelBuilding = true;
src = fetchurl {
url = "https://taskwarrior.org/download/${name}.tar.gz";
2017-08-17 14:29:44 +00:00
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
2016-03-04 20:58:30 +00:00
};
2017-09-11 09:25:59 +00:00
buildInputs = [ readline ];
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; [ ];
2016-03-04 20:58:30 +00:00
platforms = platforms.linux;
};
}