summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-24 11:15:40 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-24 20:15:40 +0200
commit741d146826ed7503060ea19cab87e388bf0f9c44 (patch)
treea370b785d46e13638fb678e3dd1f385be5855bde /pkgs/tools/misc
parent6ab9ba69975ec50cfc1bc1f8c04777860fe421d6 (diff)
downloadnixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar.gz
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar.bz2
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar.lz
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar.xz
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.tar.zst
nixlib-741d146826ed7503060ea19cab87e388bf0f9c44.zip
debootstrap: 1.0.102 -> 1.0.103 (#42514)
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/ysxn2fpiivgri65bcqf9z2ys794vv7xk-debootstrap-1.0.103/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.103 with grep in /nix/store/ysxn2fpiivgri65bcqf9z2ys794vv7xk-debootstrap-1.0.103
- directory tree listing: https://gist.github.com/06c1aec1c5c510a9ce4b0895c3a4fea2
- du listing: https://gist.github.com/81f3607504e359d1e330c44eb817d04b
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 21f91691a718..715996e8f61a 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.102";
+  version = "1.0.103";
 
   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 = "1i8fnxyf073dqywcvj6n32k1crzl7bwlmn373n5342pz71rmqrq9";
+    sha256 = "07qqbm50ji1j04hgv1fmy7y1jwl4rjh8q57znh9g3rr4j6fmax7q";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];