about summary refs log tree commit diff
path: root/pkgs/applications/misc/tasksh/default.nix
blob: 9283469fcc3971ac121a6a45395f335ccf283f49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, cmake, libuuid, gnutls }:

stdenv.mkDerivation rec {
  name = "tasksh-${version}";
  version = "1.0.0";

  enableParallelBuilding = true;

  src = fetchurl {
    url = "http://taskwarrior.org/download/tasksh-latest.tar.gz";
    sha256 = "0ll6pwhw4wsdffacsmpq46fqh084p9mdaa777giqbag3b8gwik4s";
  };

  nativeBuildInputs = [ cmake ];

  meta = with stdenv.lib; {
    description = "REPL for taskwarrior";
    homepage = http://tasktools.org;
    license = licenses.mit;
    maintainers = with maintainers; [ matthiasbeyer ];
    platforms = platforms.linux;
  };
}