Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 43a28c2083da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 94cb35748e21
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 17, 2018

  1. debootstrap: 1.0.97 -> 1.0.98 (#40682)

    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/m0h3f8pqvj25qgxc3z8qr9dz5id09ak7-debootstrap-1.0.98/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.98 with grep in /nix/store/m0h3f8pqvj25qgxc3z8qr9dz5id09ak7-debootstrap-1.0.98
    - directory tree listing: https://gist.github.com/f2964467bd7a4c6fb63e26c0c192fdc2
    - du listing: https://gist.github.com/987ba3269a198a4eb67c50f8263d192d
    r-ryantm authored and xeji committed May 17, 2018
    Copy the full SHA
    94cb357 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/debootstrap/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/debootstrap/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@
# There is also cdebootstrap now. Is that easier to maintain?
stdenv.mkDerivation rec {
name = "debootstrap-${version}";
version = "1.0.97";
version = "1.0.98";

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 = "1w2wdiazfykjkwainxfk72rccqsh1l1i90h93phsvayv0gsbxrnk";
sha256 = "07wfvjhzc5schhpn1dkvhwbi115yn4f1q99g0g39m79bbyxm50d8";
};

buildInputs = [ dpkg gettext gawk perl ];