2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl, cmake, readline }:
|
2016-03-04 21:58:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "tasksh-${version}";
|
2017-08-17 16:29:44 +02:00
|
|
|
version = "1.2.0";
|
2016-03-04 21:58:30 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://taskwarrior.org/download/${name}.tar.gz";
|
2017-08-17 16:29:44 +02:00
|
|
|
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
|
2016-03-04 21:58:30 +01:00
|
|
|
};
|
|
|
|
|
2017-09-11 11:25:59 +02:00
|
|
|
buildInputs = [ readline ];
|
2016-03-04 21:58:30 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "REPL for taskwarrior";
|
|
|
|
homepage = http://tasktools.org;
|
|
|
|
license = licenses.mit;
|
2018-04-06 10:57:19 +02:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-03-04 21:58:30 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|