summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-17 18:06:22 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-17 18:06:22 +0000
commit1161741351cbc60581eaecb4df2e1036b1fafd55 (patch)
tree6c39e36cc3ebeb91d502900c95d33cc26aec7b22 /pkgs/tools/text
parenteb3653482008bf791da71613714294ed4dbfef52 (diff)
parent73598e3787b34385d04e46830e9a7fdf89cc8ede (diff)
downloadnixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar.gz
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar.bz2
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar.lz
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar.xz
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.tar.zst
nixlib-1161741351cbc60581eaecb4df2e1036b1fafd55.zip
Merge branch 'master' into staging
* master: (28 commits)
  go_1_9: skip flaky TestWaitGroupMisuse2
  erlangR18: fix patch hashes with fetchpatch
  xml2: replace dead links
  nixos/pam: fix docs about path to u2f_keys file
  cinelerra: add a note about parallel building
  msmtp: install docs and examples (#31769)
  kernel: Fix out-of-tree modules on aarch64
  nixos/tests/acme: update terms of service to fix test
  gixy: init at 0.1.8
  pythonPackages.ConfigArgParse: 0.9.3 -> 0.12.0, refactor, move to python-modules
  mono: init at 4.8
  wal-g: fix license so not to break evaluation
  wal-g: init at 0.1.2
  maintainers: add backuitist
  nixos/prometheus: Correct documentation for external_labels
  spidermonkey: replace broken links
  vagrant: removed custom rake gem
  vagrant: 2.0.0 -> 2.0.1
  nixos/prometheus: add external_labels option
  nixos/prometheus: add scrape_configs.honor_labels
  ...
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/xml/xml2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/xml/xml2/default.nix b/pkgs/tools/text/xml/xml2/default.nix
index e96644b6d3cf..40013c7f46d5 100644
--- a/pkgs/tools/text/xml/xml2/default.nix
+++ b/pkgs/tools/text/xml/xml2/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
   name = "xml2-0.5";
 
   src = fetchurl {
-    url = "http://download.ofb.net/gale/${name}.tar.gz";
+    url = https://web.archive.org/web/20160427221603/http://download.ofb.net/gale/xml2-0.5.tar.gz;
     sha256 = "01cps980m99y99cnmvydihga9zh3pvdsqag2fi1n6k2x7rfkl873";
   };
 
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ libxml2 ];
 
   meta = with stdenv.lib; {
-    homepage = http://ofb.net/~egnor/xml2/;
+    homepage = https://web.archive.org/web/20160515005047/http://dan.egnor.name:80/xml2;
     description = "Tools for command line processing of XML, HTML, and CSV";
     license = licenses.gpl2Plus;
     platforms = platforms.all;