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-06-19 14:44:44 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-06-19 14:44:44 -0700
commita13cc1151712c5aa81e165da81a6914ce897c5ca (patch)
treebb6b41b99495bc661d019493e81e19afce96a12c /pkgs/tools/misc/debootstrap
parent4627f0719dcc73ccd10d421b05af35170324971d (diff)
debootstrap: 1.0.101 -> 1.0.102
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/1d259k14mlj2g4ahwzrqysz8qzq3h0yf-debootstrap-1.0.102/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.102 with grep in /nix/store/1d259k14mlj2g4ahwzrqysz8qzq3h0yf-debootstrap-1.0.102
- directory tree listing: https://gist.github.com/a5ffc7b266836c399de6806088eb48a7
- du listing: https://gist.github.com/7ec59bc18aa8dc8cf0540391333485c2
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 bf4319759fb64..21f91691a718e 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.101";
+  version = "1.0.102";
 
   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 = "1p1a81s8hq73byd7256iljdls389x2q7w6srgrgfmx5bl1csnzp3";
+    sha256 = "1i8fnxyf073dqywcvj6n32k1crzl7bwlmn373n5342pz71rmqrq9";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];