Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 466a19e26646
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 47c3b7d5359c
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 7, 2020

  1. Copy the full SHA
    47c3b7d View commit details

This file was deleted.

15 changes: 8 additions & 7 deletions pkgs/applications/misc/taskwarrior/default.nix
Original file line number Diff line number Diff line change
@@ -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 = ''