From 742a5e040f4a0b362ff3391caf863f42577a89ed Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 23 May 2018 00:48:22 -0700 Subject: [PATCH] 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 --- pkgs/tools/misc/debootstrap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix index 22bf8340156..d12038a707d 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 ];