about summary refs log tree commit diff
path: root/pkgs/tools/misc/debootstrap
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-05-17 13:44:42 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-17 22:44:42 +0200
commit94cb35748e21ef60db030e259ae838bdada876bb (patch)
tree5c81534254f51fd1ae15e1c6bfb6349e71b251a3 /pkgs/tools/misc/debootstrap
parent43a28c2083dac448056567f908382f70394d2f6a (diff)
downloadnixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar.gz
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar.bz2
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar.lz
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar.xz
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.tar.zst
nixlib-94cb35748e21ef60db030e259ae838bdada876bb.zip
debootstrap: 1.0.97 -> 1.0.98 (#40682)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/debootstrap/versions.

These checks were done:

- built on NixOS
- /nix/store/m0h3f8pqvj25qgxc3z8qr9dz5id09ak7-debootstrap-1.0.98/bin/debootstrap passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 1.0.98 with grep in /nix/store/m0h3f8pqvj25qgxc3z8qr9dz5id09ak7-debootstrap-1.0.98
- directory tree listing: https://gist.github.com/f2964467bd7a4c6fb63e26c0c192fdc2
- du listing: https://gist.github.com/987ba3269a198a4eb67c50f8263d192d
Diffstat (limited to 'pkgs/tools/misc/debootstrap')
-rw-r--r--pkgs/tools/misc/debootstrap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix
index 7b143183bc0c..0ed883bf342b 100644
--- a/pkgs/tools/misc/debootstrap/default.nix
+++ b/pkgs/tools/misc/debootstrap/default.nix
@@ -4,13 +4,13 @@
 # There is also cdebootstrap now. Is that easier to maintain?
 stdenv.mkDerivation rec {
   name = "debootstrap-${version}";
-  version = "1.0.97";
+  version = "1.0.98";
 
   src = fetchurl {
     # git clone git://git.debian.org/d-i/debootstrap.git
     # I'd like to use the source. However it's lacking the lanny script ? (still true?)
     url = "mirror://debian/pool/main/d/debootstrap/debootstrap_${version}.tar.gz";
-    sha256 = "1w2wdiazfykjkwainxfk72rccqsh1l1i90h93phsvayv0gsbxrnk";
+    sha256 = "07wfvjhzc5schhpn1dkvhwbi115yn4f1q99g0g39m79bbyxm50d8";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];