summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-20 20:18:46 -0700
committerOrivej Desh <orivej@gmx.fr>2018-05-21 09:01:40 +0000
commit1fd9740efbabc5cb5f90296e47a641f440eab822 (patch)
tree29bd44080219f002d1ac42beb8ee9f6239463012 /pkgs/tools/misc
parent910ac0ff47a33052ffdca80ed1f0c96217245cfc (diff)
downloadnixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar.gz
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar.bz2
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar.lz
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar.xz
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.tar.zst
nixlib-1fd9740efbabc5cb5f90296e47a641f440eab822.zip
debootstrap: 1.0.98 -> 1.0.99
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/nnih8xgijkbs82f7xig7q615m9nm8vbd-debootstrap-1.0.99/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.99 with grep in /nix/store/nnih8xgijkbs82f7xig7q615m9nm8vbd-debootstrap-1.0.99
- directory tree listing: https://gist.github.com/1c31f499b4a365254573c6c37df9e41c
- du listing: https://gist.github.com/bb42785bdce49536fc4aec7913c57bdf
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 0ed883bf342b..22bf8340156c 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.98";
+  version = "1.0.99";
 
   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 = "07wfvjhzc5schhpn1dkvhwbi115yn4f1q99g0g39m79bbyxm50d8";
+    sha256 = "1plw53zghiykddj77s5jk10ncx82cgrkk798p909yydhcghnvcsb";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];