forked from auxolotl/docs
Compare commits
2 commits
main
...
minion-pat
Author | SHA1 | Date | |
---|---|---|---|
Skyler Grey | 529157b0d2 | ||
Skyler Grey | 986f473cdd |
1
.envrc
1
.envrc
|
@ -2,4 +2,3 @@ if ! has nix_direnv_version || ! nix_direnv_version 3.0.5; then
|
||||||
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.5/direnvrc" "sha256-RuwIS+QKFj/T9M2TFXScjBsLR6V3A17YVoEW/Q6AZ1w="
|
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.5/direnvrc" "sha256-RuwIS+QKFj/T9M2TFXScjBsLR6V3A17YVoEW/Q6AZ1w="
|
||||||
fi
|
fi
|
||||||
use flake
|
use flake
|
||||||
# a comment in an unrelated file...
|
|
|
@ -23,9 +23,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs-builder = channels: {
|
outputs-builder = channels: {
|
||||||
checks."//tmp/this-is-path-traversal" = inputs.self.packages.${channels.nixpkgs.system}.aux-wiki;
|
checks = inputs.nixpkgs.lib.filterAttrs (name: _:
|
||||||
checks."/aux-wiki/path-traversal-2" = inputs.self.packages.${channels.nixpkgs.system}.aux-wiki;
|
name == "aux-wiki"
|
||||||
checks."aux-wiki/all-good" = inputs.self.packages.${channels.nixpkgs.system}.aux-wiki;
|
) inputs.self.packages.${channels.nixpkgs.system};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenvNoCC, inputs }: stdenvNoCC.mkDerivation
|
{ stdenvNoCC, inputs }:
|
||||||
{
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "aux-wiki";
|
pname = "aux-wiki";
|
||||||
version = "unstable";
|
version = "unstable";
|
||||||
|
|
||||||
|
@ -12,15 +12,8 @@
|
||||||
cp -r community $out/community
|
cp -r community $out/community
|
||||||
cp -r contributing $out/contributing
|
cp -r contributing $out/contributing
|
||||||
cp -r docs $out/docs
|
cp -r docs $out/docs
|
||||||
|
|
||||||
# foo, bar, baz, qux, quxx
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
fixupPhase = ''
|
fixupPhase = ''
|
||||||
pushd $out
|
pushd $out
|
||||||
mv home.md index.md
|
mv home.md index.md
|
||||||
|
|
Loading…
Reference in a new issue