taskwarrior: 2.5.1 -> 2.5.2 (#106156)
This commit is contained in:
@@ -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 = ''
|
||||
|
||||
Reference in New Issue
Block a user