nixpkgs/pkgs/applications/misc/tasksh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
568 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, readline }:
2016-03-04 23:58:30 +03:00
stdenv.mkDerivation rec {
pname = "tasksh";
2017-08-17 17:29:44 +03:00
version = "1.2.0";
2016-03-04 23:58:30 +03:00
src = fetchurl {
url = "https://taskwarrior.org/download/${pname}-${version}.tar.gz";
2017-08-17 17:29:44 +03:00
sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
2016-03-04 23:58:30 +03:00
};
2017-09-11 12:25:59 +03:00
buildInputs = [ readline ];
2016-03-04 23:58:30 +03:00
nativeBuildInputs = [ cmake ];
meta = with lib; {
2016-03-04 23:58:30 +03:00
description = "REPL for taskwarrior";
homepage = "http://tasktools.org";
2016-03-04 23:58:30 +03:00
license = licenses.mit;
maintainers = with maintainers; [ matthiasbeyer ];
2019-11-18 17:47:10 +03:00
platforms = platforms.unix;
2016-03-04 23:58:30 +03:00
};
}