nixpkgs/pkgs/tools/networking/urlwatch/default.nix

26 lines
626 B
Nix
Raw Normal View History

2014-07-29 20:13:47 +00:00
{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonPackage rec {
2014-11-17 03:14:48 +00:00
name = "urlwatch-1.17";
2014-07-29 20:13:47 +00:00
src = fetchurl {
url = "http://thp.io/2008/urlwatch/${name}.tar.gz";
2014-11-17 03:14:48 +00:00
sha256 = "1xl8gi01bfbrg2mchns9cgagpxjjsig1x4kis3isqgfg4k0h8vq0";
2014-07-29 20:13:47 +00:00
};
patchPhase = ''
./convert-to-python3.sh
'';
postFixup = ''
wrapProgram "$out/bin/urlwatch" --prefix "PYTHONPATH" : "$PYTHONPATH"
'';
2014-07-29 20:13:47 +00:00
meta = {
description = "A tool for monitoring webpages for updates";
homepage = https://thp.io/2008/urlwatch/;
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.tv ];
};
}