1 { lib, stdenv, fetchurl, cmake, readline }:
3 stdenv.mkDerivation rec {
8 url = "https://taskwarrior.org/download/${pname}-${version}.tar.gz";
9 sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
12 buildInputs = [ readline ];
13 nativeBuildInputs = [ cmake ];
16 description = "REPL for taskwarrior";
17 homepage = "http://tasktools.org";
18 license = licenses.mit;
19 maintainers = with maintainers; [ matthiasbeyer ];
20 platforms = platforms.unix;
21 mainProgram = "tasksh";