summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-06-18 19:53:58 +0200
committertv <tv@krebsco.de>2017-06-18 19:53:58 +0200
commit11e13658d19f3e4a43400153f1f13d82a2139389 (patch)
tree4e769ff30dfeb6d1ba1fb5ed5f23a1cdb77e0fa1 /krebs
parentbae426857eb956fa6941f0a0b3703ee8ab401792 (diff)
urlwatch: 2.5 -> 2.6
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/simple/urlwatch/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/krebs/5pkgs/simple/urlwatch/default.nix b/krebs/5pkgs/simple/urlwatch/default.nix
index 7ffbd887..225b5bf8 100644
--- a/krebs/5pkgs/simple/urlwatch/default.nix
+++ b/krebs/5pkgs/simple/urlwatch/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonPackage rec {
- name = "urlwatch-2.5";
+ name = "urlwatch-${meta.version}";
src = fetchurl {
- url = "https://thp.io/2008/urlwatch/${name}.tar.gz";
- sha256 = "0qirpymdmpsx0klmhbx3icmiwpm6fx4wjma646gl9m90pifs8430";
+ url = "https://github.com/thp/urlwatch/archive/${meta.version}.tar.gz";
+ sha256 = "09bn31gn03swi7yr3s1ql8x07hx96gap1ka77kk44kk0lvfxn55b";
};
propagatedBuildInputs = with python3Packages; [
@@ -20,5 +20,6 @@ python3Packages.buildPythonPackage rec {
homepage = https://thp.io/2008/urlwatch/;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.tv ];
+ version = "2.6";
};
}