nixos-option: fix self inclusive src
This commit is contained in:
parent
d40ab11e88
commit
7a2b306001
@ -10,7 +10,10 @@
|
||||
stdenv.mkDerivation {
|
||||
name = "nixos-option";
|
||||
|
||||
src = ./.;
|
||||
src = lib.fileset.toSource {
|
||||
root = ./.;
|
||||
fileset = lib.fileset.fileFilter (file: file.name != "default.nix") ./.;
|
||||
};
|
||||
postInstall = ''
|
||||
installManPage ${./nixos-option.8}
|
||||
'';
|
||||
|
Loading…
Reference in New Issue
Block a user