taskwarrior: 2.5.1 -> 2.5.2 (#106156)

This commit is contained in:
Matthias Beyer
2020-12-07 12:04:23 +01:00
committed by GitHub
parent 466a19e266
commit 47c3b7d535
2 changed files with 8 additions and 35 deletions
@@ -1,16 +1,17 @@
{ stdenv, fetchurl, cmake, libuuid, gnutls }:
{ stdenv, fetchFromGitHub, cmake, libuuid, gnutls }:
stdenv.mkDerivation rec {
pname = "taskwarrior";
version = "2.5.1";
version = "2.5.2";
src = fetchurl {
url = "https://taskwarrior.org/download/task-${version}.tar.gz";
sha256 = "059a9yc58wcicc6xxsjh1ph7k2yrag0spsahp1wqmsq6h7jwwyyq";
src = fetchFromGitHub {
owner = "GothenburgBitFactory";
repo = "taskwarrior";
rev = "v${version}";
sha256 = "0jv5b56v75qhdqbrfsddfwizmbizcsv3mn8gp92nckwlx9hrk5id";
fetchSubmodules = true;
};
patches = [ ./0001-bash-completion-quote-pattern-argument-to-grep.patch ];
nativeBuildInputs = [ cmake libuuid gnutls ];
postInstall = ''