debootstrap: 1.0.114 -> 1.0.115

This commit is contained in:
xrelkd 2019-07-13 01:12:14 +08:00
parent 157d56d311
commit c9b88d0d79

View File

@ -14,14 +14,14 @@ let binPath = stdenv.lib.makeBinPath [
wget wget
]; ];
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "debootstrap-${version}"; pname = "debootstrap";
version = "1.0.114"; version = "1.0.115";
src = fetchurl { src = fetchurl {
# git clone git://git.debian.org/d-i/debootstrap.git # 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?) # 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"; url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.gz";
sha256 = "14lw18bhxap1g15q0rhslacj1bcrl69wrqcx6azmbvd92rl4bqd8"; sha256 = "1s6ln7r6y91f0xmzbf9x4yx53hzcpiaa76i9dbmpy0ibw1ji30g4";
}; };
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
@ -57,11 +57,11 @@ in stdenv.mkDerivation rec {
runHook postInstall runHook postInstall
''; '';
meta = { meta = with stdenv.lib; {
description = "Tool to create a Debian system in a chroot"; description = "Tool to create a Debian system in a chroot";
homepage = https://wiki.debian.org/Debootstrap; homepage = https://wiki.debian.org/Debootstrap;
license = stdenv.lib.licenses.mit; license = licenses.mit;
maintainers = [ stdenv.lib.maintainers.marcweber ]; maintainers = with maintainers; [ marcweber ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }