2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, cmake, readline }:
|
2016-03-04 21:58:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tasksh";
|
2017-08-17 16:29:44 +02:00
|
|
|
version = "1.2.0";
|
2016-03-04 21:58:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://taskwarrior.org/download/${pname}-${version}.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 ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-03-04 21:58:30 +01:00
|
|
|
description = "REPL for taskwarrior";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://tasktools.org";
|
2016-03-04 21:58:30 +01:00
|
|
|
license = licenses.mit;
|
2019-02-20 19:52:48 +01:00
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2019-11-18 15:47:10 +01:00
|
|
|
platforms = platforms.unix;
|
2024-02-11 03:19:15 +01:00
|
|
|
mainProgram = "tasksh";
|
2016-03-04 21:58:30 +01:00
|
|
|
};
|
|
|
|
}
|