summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-23 00:48:22 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-05-23 00:48:22 -0700
commit742a5e040f4a0b362ff3391caf863f42577a89ed (patch)
treedd4317e0f9c8cfda9b4740b310f295b0cf73f3ae /pkgs/tools
parentc8a4562f5966e90cbbe04195b4a37a5d4a334f60 (diff)
downloadnixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar.gz
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar.bz2
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar.lz
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar.xz
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.tar.zst
nixlib-742a5e040f4a0b362ff3391caf863f42577a89ed.zip
debootstrap: 1.0.99 -> 1.0.100
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/g8j2xv68jlpcggliz2as8814pnlls6x5-debootstrap-1.0.100/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.100 with grep in /nix/store/g8j2xv68jlpcggliz2as8814pnlls6x5-debootstrap-1.0.100
- directory tree listing: https://gist.github.com/70fb3fb65a686979e6e2524ca19aabeb
- du listing: https://gist.github.com/e292e6056ab90b1742bed2ca6569a506
Diffstat (limited to 'pkgs/tools')
-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 22bf8340156c..d12038a707d2 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.99";
+  version = "1.0.100";
 
   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 = "1plw53zghiykddj77s5jk10ncx82cgrkk798p909yydhcghnvcsb";
+    sha256 = "0jmwf26sq4bkdz6wi0dcjsrfkg8c8k3xdhi11xp6cdrw6qpw82ws";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];