2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, cmake, readline }:
|
2016-03-04 20:58:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tasksh";
|
2017-08-17 15:29:44 +01:00
|
|
|
version = "1.2.0";
|
2016-03-04 20:58:30 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://taskwarrior.org/download/${pname}-${version}.tar.gz";
|
2017-08-17 15:29:44 +01:00
|
|
|
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
|
2016-03-04 20:58:30 +00:00
|
|
|
};
|
|
|
|
|
2017-09-11 10:25:59 +01:00
|
|
|
buildInputs = [ readline ];
|
2016-03-04 20:58:30 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "REPL for taskwarrior";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://tasktools.org";
|
2016-03-04 20:58:30 +00:00
|
|
|
license = licenses.mit;
|
2019-02-20 18:52:48 +00:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2019-11-18 14:47:10 +00:00
|
|
|
platforms = platforms.unix;
|
2016-03-04 20:58:30 +00:00
|
|
|
};
|
|
|
|
}
|