mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 08:01:50 +00:00
timewarrior: 1.1.1 -> 1.2.0
Switch to fetch sources from github. Signed-off-by: Matthias Beyer <mail@beyermatthias.de> CC: Sampo Sorsa <sorsasampo@protonmail.com> CC: Ingolf Wanger <contact@ingolf-wagner.de>
This commit is contained in:
parent
27421fc6f0
commit
cf38a146fd
|
@ -1,14 +1,17 @@
|
||||||
{ stdenv, fetchurl, cmake }:
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "timewarrior";
|
pname = "timewarrior";
|
||||||
version = "1.1.1";
|
version = "1.2.0";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://taskwarrior.org/download/timew-${version}.tar.gz";
|
owner = "GothenburgBitFactory";
|
||||||
sha256 = "1jfcfzdwk5qqhxznj1bgy0sx3lnp3z5lqr9kch9a7iazwmi9lz8z";
|
repo = "timewarrior";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ci8kb7gdp1dsv6xj30nbz8lidrmn50pbriw26wv8mdhs17rfk7w";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
Loading…
Reference in a new issue