summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-07-05 18:52:46 +0800
committerGitHub <noreply@github.com>2018-07-05 18:52:46 +0800
commitf8e12b7875f07cdaacddff4485471dfe9978959f (patch)
tree5d88c2478ca95aa6e46ff590bc12d3ac8b926173 /pkgs/tools
parentf9d68dd87a92d6a70af3560669f28eef14b084bd (diff)
parentbdf8f61d3f0d3cd001a8a7efb93538832b3d9219 (diff)
downloadnixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar.gz
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar.bz2
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar.lz
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar.xz
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.tar.zst
nixlib-f8e12b7875f07cdaacddff4485471dfe9978959f.zip
Merge pull request #43030 from r-ryantm/auto-update/debootstrap
debootstrap: 1.0.103 -> 1.0.105
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 715996e8f61a..e68aaff1ddfb 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.103";
+  version = "1.0.105";
 
   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 = "07qqbm50ji1j04hgv1fmy7y1jwl4rjh8q57znh9g3rr4j6fmax7q";
+    sha256 = "0m4630q8smn45pmck1azk5sv6cgdzza2r001paqvmasqa6qxbjq3";
   };
 
   buildInputs = [ dpkg gettext gawk perl ];