summary refs log tree commit diff
path: root/pkgs/os-specific/bsd
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-11-03 15:50:01 +0000
committerAlyssa Ross <hi@alyssa.is>2021-11-09 22:53:22 +0000
commitf5b089b626baa2dcd5560ad77e250fc58a307621 (patch)
treef55ae9d77469a2ed07ff2d432772bbdd8e0e8c8e /pkgs/os-specific/bsd
parentf5a78628ac672126b0473ba86d4be35463cf87fd (diff)
downloadnixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar.gz
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar.bz2
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar.lz
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar.xz
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.tar.zst
nixpkgs-f5b089b626baa2dcd5560ad77e250fc58a307621.zip
netbsd: add missing rsync native build inputs
Using extraPaths in NetBSD packages now requires rsync, but the rsync
dependency wasn't added to all the packages using extraPaths that
override nativeBuildInputs, so they'd just fail immediately.

Fixes: 75db7f8eb04 ("netbsd: Use rsync to speed up source merging")
Diffstat (limited to 'pkgs/os-specific/bsd')
-rw-r--r--pkgs/os-specific/bsd/netbsd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/bsd/netbsd/default.nix b/pkgs/os-specific/bsd/netbsd/default.nix
index 8f24d28409f..5fd9bbc51a0 100644
--- a/pkgs/os-specific/bsd/netbsd/default.nix
+++ b/pkgs/os-specific/bsd/netbsd/default.nix
@@ -508,7 +508,7 @@ in lib.makeScopeWithSplicing
     nativeBuildInputs = with buildPackages.netbsd; [
       bsdSetupHook netbsdSetupHook
       makeMinimal
-      install mandoc groff nbperf
+      install mandoc groff nbperf rsync
     ];
     makeFlags = defaultMakeFlags ++ [ "TOOLDIR=$(out)" ];
     extraPaths = with self; [
@@ -674,7 +674,7 @@ in lib.makeScopeWithSplicing
     nativeBuildInputs = with buildPackages.netbsd; [
       bsdSetupHook netbsdSetupHook
       makeMinimal
-      byacc install tsort lorder mandoc statHook
+      byacc install tsort lorder mandoc statHook rsync
     ];
     buildInputs = with self; [ headers ];
     SHLIBINSTALLDIR = "$(out)/lib";
@@ -707,7 +707,7 @@ in lib.makeScopeWithSplicing
     sha256 = "0pq05k3dj0dfsczv07frnnji92mazmy2qqngqbx2zgqc1x251414";
     nativeBuildInputs = with buildPackages.netbsd; [
       bsdSetupHook netbsdSetupHook
-      makeMinimal install tsort lorder mandoc statHook nbperf tic
+      makeMinimal install tsort lorder mandoc statHook nbperf tic rsync
     ];
     buildInputs = with self; compatIfNeeded;
     SHLIBINSTALLDIR = "$(out)/lib";