fix : remove dupe packages in flake, as is on main

This commit is contained in:
esy 2024-08-26 20:14:43 +01:00
parent eba88efd58
commit 14d5fb5fd3
No known key found for this signature in database
3 changed files with 101 additions and 10 deletions

View file

@ -15,25 +15,24 @@
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
];
in {
formatter = alejandra.defaultPackage.${system};
defaultPackage = pkgs.stdenv.mkDerivation {
name = "skynet-wiki";
src = self;
buildInputs = [
pkgs.python3Packages.mkdocs
pkgs.python3Packages.mkdocs-material
];
buildInputs = packages;
buildPhase = "mkdocs build";
installPhase = "mkdir -p $out; cp -R site/* $out;";
};
devShells.default = pkgs.mkShell {
name = "Skynet Wiki env";
packages = [
pkgs.python3Packages.mkdocs
pkgs.python3Packages.mkdocs-material
];
packages = packages;
};
}
);