This commit is contained in:
outfoxxed 2025-04-24 20:46:34 -07:00
parent 57fa994768
commit 6416e62afe
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
3 changed files with 88 additions and 9 deletions

View file

@ -19,8 +19,18 @@
./system.nix
./boot.nix
./ghc.nix
./riscvfixes.nix
#./ghc.nix
#./riscvfixes.nix
{
nixpkgs.overlays = [(final: prev: {
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(pyfinal: pyprev: {
pystemmer = pyfinal.callPackage ./pystemmer.nix {};
})
];
})];
}
];
};
};
@ -29,9 +39,10 @@
x86_64-linux = let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
boot = pkgs.linkFarm "boot" {
pystemmer = pkgs.python312Packages.pystemmer;
/*boot = pkgs.linkFarm "boot" {
"ghc-9.4.8" = pkgs.pkgsCross.riscv64.haskell.compiler.native-bignum.ghc948;
};
};*/
};
};
};