summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-09 14:34:36 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-09 23:34:36 +0200
commitc283f18b0f20a92d77902116b1b0680401cd4d60 (patch)
treedc87025a429eaf863818c2a88da57576b7404143 /pkgs
parentcc9fc2bdcd4bbdaaf6b4e172011488f712693617 (diff)
downloadnixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar.gz
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar.bz2
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar.lz
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar.xz
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.tar.zst
nixpkgs-c283f18b0f20a92d77902116b1b0680401cd4d60.zip
debootstrap: 1.0.100 -> 1.0.101 (#41573)
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/x9xnb4bkg9h18iz4xvjsqwq1yzy7y4fg-debootstrap-1.0.101/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.101 with grep in /nix/store/x9xnb4bkg9h18iz4xvjsqwq1yzy7y4fg-debootstrap-1.0.101
- directory tree listing: https://gist.github.com/ff456a293ac749e2bb7a78fd6cf95906
- du listing: https://gist.github.com/57824cbc8d981aa24e5d98ca35e86053
Diffstat (limited to 'pkgs')
-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 d12038a707d..bf4319759fb 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.100";
+  version = "1.0.101";
 
   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 = "0jmwf26sq4bkdz6wi0dcjsrfkg8c8k3xdhi11xp6cdrw6qpw82ws";
+    sha256 = "1p1a81s8hq73byd7256iljdls389x2q7w6srgrgfmx5bl1csnzp3";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];