1
0
Fork 0
forked from Skynet/wiki
wiki/flake.nix

34 lines
852 B
Nix
Raw Normal View History

{
description = "Skynet Wiki";
inputs = {
utils.url = "github:numtide/flake-utils";
};
2024-08-19 21:32:18 +00:00
outputs = { self, nixpkgs, utils, }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages."${system}";
# find these here https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=python312Packages.mkdocs
packages = with pkgs.python3Packages; [
mkdocs
mkdocs-material
];
2024-08-19 21:32:18 +00:00
in {
defaultPackage = pkgs.stdenv.mkDerivation {
2024-08-19 21:32:18 +00:00
name = "skynet-wiki";
src = self;
buildInputs = packages;
2024-08-19 21:32:18 +00:00
buildPhase = "mkdocs build";
installPhase = "mkdir -p $out; cp -R site/* $out;";
};
2024-08-16 14:37:25 +00:00
devShells.default = pkgs.mkShell {
name = "Skynet Wiki env";
packages = packages;
};
}
);
2024-08-19 21:32:18 +00:00
}