openbsd.{fsck,fsck_ffs,fsck_msdos}: init

This commit is contained in:
Artemis Tosini
2025-01-06 23:07:46 -08:00
committed by Audrey Dutcher
parent 66ca9869c7
commit fb6a7bfe74
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,4 @@
{ mkDerivation }:
mkDerivation {
path = "sbin/fsck";
}
@@ -0,0 +1,8 @@
{ mkDerivation }:
mkDerivation {
path = "sbin/fsck_ffs";
extraPaths = [
"sbin/fsck"
"sys/ufs/ffs"
];
}
@@ -0,0 +1,5 @@
{ mkDerivation }:
mkDerivation {
path = "sbin/fsck_msdos";
extraPaths = [ "sbin/fsck" ];
}