summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-07-04 11:42:33 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-07-04 11:42:33 -0700
commitbdf8f61d3f0d3cd001a8a7efb93538832b3d9219 (patch)
treeb9831992374f03c11bf068836fc1c64635f1e838 /pkgs/tools/misc
parenta260b3d681164bedaeb90fd578390147799d638c (diff)
downloadnixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar.gz
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar.bz2
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar.lz
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar.xz
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.tar.zst
nixlib-bdf8f61d3f0d3cd001a8a7efb93538832b3d9219.zip
debootstrap: 1.0.103 -> 1.0.105
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/a4cy4rmcr4bn1mjvns0dm4n4yma17mbl-debootstrap-1.0.105/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.105 with grep in /nix/store/a4cy4rmcr4bn1mjvns0dm4n4yma17mbl-debootstrap-1.0.105
- directory tree listing: https://gist.github.com/40e65f229f988ac5e3640bc3461c45f1
- du listing: https://gist.github.com/0fcad76edd4428db9a9941418c3471ca
Diffstat (limited to 'pkgs/tools/misc')
-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 715996e8f61a..e68aaff1ddfb 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.103";
+  version = "1.0.105";
 
   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 = "07qqbm50ji1j04hgv1fmy7y1jwl4rjh8q57znh9g3rr4j6fmax7q";
+    sha256 = "0m4630q8smn45pmck1azk5sv6cgdzza2r001paqvmasqa6qxbjq3";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];