Prepare topics for workshop #182
Owner
- Prepare environment with python and a custom module with nOS-V dependency (Arnau).
- Prepare environment with python and a [custom module](https://gitlab.bsc.es/huawei/pos-v) with nOS-V dependency (Arnau).
```nix
{
inputs.bscpkgs.url = "git+https://jungle.bsc.es/git/rarias/bscpkgs";
outputs = { self, bscpkgs }:
let
customOverlay = final: prev: {
python314 = prev.python314.override {
enableGIL = false;
};
nosv = prev.nosv.override {
useGit = true;
gitBranch = "nosv_join";
gitCommit = "33130d271a59d0794545e4a2a597a56951e428aa";
gitUrl = "ssh://git@gitlab-internal.bsc.es/acinca/nos-v.git";
};
};
pkgs = import bscpkgs.inputs.nixpkgs {
system = "x86_64-linux";
overlays = [
bscpkgs.bscOverlay
customOverlay
];
};
in {
devShells.x86_64-linux.default = pkgs.mkShell {
pname = "devshell";
NOSV_HOME = pkgs.nosv;
buildInputs = with pkgs; [
(python314.withPackages (python-pkgs: with python-pkgs; [
setuptools
]))
gcc cowsay nosv
];
};
};
}
```
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?