mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
c1ffbd8ee8
A few changes from upstream: 1) the executable is patched to support a --no-robots flag to ignore robots.txto 2) the GUI doesn't work (for now), so this is CLI only
31 lines
788 B
Nix
31 lines
788 B
Nix
{ stdenv, lib, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
name = "LinkChecker-${version}";
|
|
version = "9.3";
|
|
|
|
# LinkChecker 9.3 only works with requests 2.9.x
|
|
propagatedBuildInputs = with python2Packages ; [ requests2 ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/L/LinkChecker/${name}.tar.gz";
|
|
sha256 = "0v8pavf0bx33xnz1kwflv0r7lxxwj7vg3syxhy2wzza0wh6sc2pf";
|
|
};
|
|
|
|
# upstream refuses to support ignoring robots.txt
|
|
patches = [
|
|
./add-no-robots-flag.patch
|
|
];
|
|
|
|
postInstall = ''
|
|
rm $out/bin/linkchecker-gui
|
|
'';
|
|
|
|
meta = {
|
|
description = "Check websites for broken links";
|
|
homepage = "https://wummel.github.io/linkchecker/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
}
|