netbsd: Remove a bunch of unneeded rsync deps

Now that we assemble the source code per each package in a separate prep
derivation since b6727bbeac, we don't need
rsync in the package proper derivations.
This commit is contained in:
John Ericson 2024-06-20 12:09:25 -04:00
parent 80d3b5dbf9
commit 94424da4fc
20 changed files with 0 additions and 47 deletions

View File

@ -53,7 +53,6 @@ makeScopeWithSplicing' {
compat = self.callPackage ./pkgs/compat/package.nix {
inherit (buildPackages) coreutils;
inherit (buildPackages.darwin) cctools-port;
inherit (buildPackages.buildPackages) rsync;
inherit (buildPackages.netbsd) makeMinimal;
inherit (self) install;
};
@ -65,14 +64,12 @@ makeScopeWithSplicing' {
make
compatIfNeeded
;
inherit (buildPackages.buildPackages) rsync;
inherit (buildPackages.netbsd) makeMinimal;
};
# See note in pkgs/stat/package.nix
stat = self.callPackage ./pkgs/stat/package.nix {
inherit (buildPackages.netbsd) makeMinimal install;
inherit (buildPackages.buildPackages) rsync;
};
# See note in pkgs/stat/hook.nix
@ -80,17 +77,14 @@ makeScopeWithSplicing' {
tsort = self.callPackage ./pkgs/tsort.nix {
inherit (buildPackages.netbsd) makeMinimal install;
inherit (buildPackages.buildPackages) rsync;
};
lorder = self.callPackage ./pkgs/lorder.nix {
inherit (buildPackages.netbsd) makeMinimal install;
inherit (buildPackages.buildPackages) rsync;
};
config = self.callPackage ./pkgs/config.nix {
inherit (buildPackages.netbsd) makeMinimal install;
inherit (buildPackages.buildPackages) rsync;
inherit (self) cksum;
};
@ -102,7 +96,6 @@ makeScopeWithSplicing' {
rpcgen
;
inherit (buildPackages) stdenv;
inherit (buildPackages.buildPackages) rsync;
};
sys-headers = self.callPackage ./pkgs/sys/headers.nix {
@ -116,7 +109,6 @@ makeScopeWithSplicing' {
config
genassym
;
inherit (buildPackages.buildPackages) rsync;
};
libutil = self.callPackage ./pkgs/libutil.nix { inherit (self) libc sys; };
@ -135,7 +127,6 @@ makeScopeWithSplicing' {
tsort
statHook
;
inherit (buildPackages.buildPackages) rsync;
};
@ -152,7 +143,6 @@ makeScopeWithSplicing' {
statHook
rpcgen
;
inherit (buildPackages.buildPackages) rsync;
};
mtree = self.callPackage ./pkgs/mtree.nix { inherit (self) mknod; };

View File

@ -10,7 +10,6 @@
bsdSetupHook,
netbsdSetupHook,
makeMinimal,
rsync,
version,
}:
@ -48,7 +47,6 @@ mkDerivation (
bsdSetupHook
netbsdSetupHook
makeMinimal
rsync
];
buildInputs = commonDeps;

View File

@ -7,7 +7,6 @@
mandoc,
byacc,
flex,
rsync,
compatIfNeeded,
cksum,
}:
@ -22,7 +21,6 @@ mkDerivation {
mandoc
byacc
flex
rsync
];
buildInputs = compatIfNeeded;
extraPaths = [ cksum.path ];

View File

@ -14,7 +14,6 @@
lorder,
tsort,
statHook,
rsync,
headers,
sys-headers,
ld_elf_so,
@ -38,7 +37,6 @@ mkDerivation {
lorder
tsort
statHook
rsync
];
buildInputs = [ headers ];
extraPaths = [

View File

@ -2,7 +2,6 @@
mkDerivation,
bsdSetupHook,
netbsdSetupHook,
rsync,
compatIfNeeded,
}:
@ -12,7 +11,6 @@ mkDerivation {
nativeBuildInputs = [
bsdSetupHook
netbsdSetupHook
rsync
];
propagatedBuildInputs = compatIfNeeded;
extraPaths = [

View File

@ -7,7 +7,6 @@
install,
mandoc,
groff,
rsync,
nbperf,
rpcgen,
defaultMakeFlags,
@ -24,7 +23,6 @@ mkDerivation {
install
mandoc
groff
rsync
nbperf
rpcgen
];

View File

@ -8,7 +8,6 @@
makeMinimal,
mandoc,
groff,
rsync,
compatIfNeeded,
fts,
@ -36,7 +35,6 @@ mkDerivation {
makeMinimal
mandoc
groff
rsync
];
skipIncludesPhase = true;
buildInputs =

View File

@ -15,7 +15,6 @@
lorder,
tsort,
statHook,
rsync,
rpcgen,
csu,
headers,
@ -55,7 +54,6 @@ mkDerivation {
lorder
tsort
statHook
rsync
rpcgen
];
buildInputs = [

View File

@ -10,7 +10,6 @@
statHook,
nbperf,
tic,
rsync,
compatIfNeeded,
}:
@ -27,7 +26,6 @@ mkDerivation {
statHook
nbperf
tic
rsync
];
buildInputs = compatIfNeeded;
SHLIBINSTALLDIR = "$(out)/lib";

View File

@ -11,7 +11,6 @@
lorder,
mandoc,
statHook,
rsync,
headers,
}:
@ -32,7 +31,6 @@ mkDerivation {
lorder
mandoc
statHook
rsync
];
buildInputs = [ headers ];
SHLIBINSTALLDIR = "$(out)/lib";

View File

@ -6,7 +6,6 @@
install,
mandoc,
groff,
rsync,
}:
mkDerivation {
@ -18,6 +17,5 @@ mkDerivation {
install
mandoc
groff
rsync
];
}

View File

@ -4,7 +4,6 @@
stdenv,
bsdSetupHook,
netbsdSetupHook,
rsync,
}:
mkDerivation {
@ -15,7 +14,6 @@ mkDerivation {
nativeBuildInputs = [
bsdSetupHook
netbsdSetupHook
rsync
];
dontBuild = true;

View File

@ -2,7 +2,6 @@
mkDerivation,
bsdSetupHook,
netbsdSetupHook,
rsync,
make,
make-rules,
}:
@ -14,7 +13,6 @@ mkDerivation {
nativeBuildInputs = [
bsdSetupHook
netbsdSetupHook
rsync
];
skipIncludesPhase = true;

View File

@ -59,7 +59,6 @@ lib.makeOverridable (
mandoc
groff
statHook
rsync
];
buildInputs = compatIfNeeded;

View File

@ -6,7 +6,6 @@
install,
mandoc,
groff,
rsync,
}:
# Don't add this to nativeBuildInputs directly.
@ -21,6 +20,5 @@ mkDerivation {
install
mandoc
groff
rsync
];
}

View File

@ -9,7 +9,6 @@
tsort,
lorder,
statHook,
rsync,
uudecode,
config,
genassym,
@ -53,7 +52,6 @@
tsort
lorder
statHook
rsync
uudecode
config
genassym

View File

@ -9,7 +9,6 @@
tsort,
lorder,
statHook,
rsync,
uudecode,
config,
genassym,
@ -28,7 +27,6 @@ let
tsort
lorder
statHook
rsync
uudecode
config
genassym

View File

@ -9,7 +9,6 @@
tsort,
lorder,
statHook,
rsync,
uudecode,
config,
genassym,
@ -28,7 +27,6 @@ let
tsort
lorder
statHook
rsync
uudecode
config
genassym

View File

@ -7,7 +7,6 @@
mandoc,
groff,
nbperf,
rsync,
compatIfNeeded,
defaultMakeFlags,
libterminfo,
@ -25,7 +24,6 @@ mkDerivation {
mandoc
groff
nbperf
rsync
];
makeFlags = defaultMakeFlags ++ [ "TOOLDIR=$(out)" ];
extraPaths = [

View File

@ -6,7 +6,6 @@
install,
mandoc,
groff,
rsync,
}:
mkDerivation {
@ -18,6 +17,5 @@ mkDerivation {
install
mandoc
groff
rsync
];
}