biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / tasksh / default.nix
blob0e169bc998d612521d3b8f041e337fceb8f7df77
1 { lib, stdenv, fetchurl, cmake, readline }:
3 stdenv.mkDerivation rec {
4   pname = "tasksh";
5   version = "1.2.0";
7   src = fetchurl {
8     url = "https://taskwarrior.org/download/${pname}-${version}.tar.gz";
9     sha256 = "1z8zw8lld62fjafjvy248dncjk0i4fwygw0ahzjdvyyppx4zjhkf";
10   };
12   buildInputs = [ readline ];
13   nativeBuildInputs = [ cmake ];
15   meta = with lib; {
16     description = "REPL for taskwarrior";
17     homepage = "http://tasktools.org";
18     license = licenses.mit;
19     maintainers = with maintainers; [ matthiasbeyer ];
20     platforms = platforms.unix;
21     mainProgram = "tasksh";
22   };