1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/misc/tasksh/default.nix

25 lines
617 B
Nix
Raw Normal View History

2017-09-11 05:25:59 -04:00
{ stdenv, fetchurl, cmake, libuuid, gnutls, readline }:
2016-03-04 15:58:30 -05:00
stdenv.mkDerivation rec {
name = "tasksh-${version}";
2017-08-17 10:29:44 -04:00
version = "1.2.0";
2016-03-04 15:58:30 -05:00
enableParallelBuilding = true;
src = fetchurl {
2016-10-09 11:36:55 -04:00
url = "http://taskwarrior.org/download/${name}.tar.gz";
2017-08-17 10:29:44 -04:00
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
2016-03-04 15:58:30 -05:00
};
2017-09-11 05:25:59 -04:00
buildInputs = [ readline ];
2016-03-04 15:58:30 -05:00
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "REPL for taskwarrior";
homepage = http://tasktools.org;
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
platforms = platforms.linux;
};
}