Unverified Commit 5a51f322 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #307564 from Stunkymonkey/self-inclusive-src-nixos-option

nixos-option: fix self inclusive src
parents b6872925 7a2b3060
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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}
  '';