Unverified Commit 9b03589f authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #307936 from NixOS/revert-307564-self-inclusive-src-nixos-option

Revert "nixos-option: fix self inclusive src"
parents b9b77275 350fa79f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -10,10 +10,7 @@
stdenv.mkDerivation {
  name = "nixos-option";

  src = lib.fileset.toSource {
    root = ./.;
    fileset = lib.fileset.fileFilter (file: file.name != "default.nix") ./.;
  };
  src = ./.;
  postInstall = ''
    installManPage ${./nixos-option.8}
  '';