about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2024-04-30 11:37:45 -0400
committerGitHub <noreply@github.com>2024-04-30 11:37:45 -0400
commit756025cc002101748006c7efbe9cf2761850cbdf (patch)
treedd5390649df1ed4df11898f37fe85ab0f05a8b70
parentadc34261a7953b05e41e2d51b243888f2c97a512 (diff)
parent22b1e25676ab30a9e95abac40aea7868cfd7fe1f (diff)
Merge pull request #308012 from obsidiansystems/fix-freebsd
freebsd.mtree: Needs explicit callPackage
-rw-r--r--pkgs/os-specific/bsd/netbsd/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/os-specific/bsd/netbsd/default.nix b/pkgs/os-specific/bsd/netbsd/default.nix
index ff01c2ce62eb6..fd5e24aa7102a 100644
--- a/pkgs/os-specific/bsd/netbsd/default.nix
+++ b/pkgs/os-specific/bsd/netbsd/default.nix
@@ -129,5 +129,9 @@ makeScopeWithSplicing' {
       inherit (buildPackages.buildPackages) rsync;
     };
 
+    mtree = self.callPackage ./pkgs/mtree.nix {
+      inherit (self) mknod;
+    };
+
   }));
 }