Switch bscpkgs inputs to jungle

This commit is contained in:
2025-10-14 09:51:17 +02:00
parent 9457de1983
commit 676a0ced1c
4 changed files with 42 additions and 36 deletions

View File

@@ -1,8 +1,8 @@
{
inputs.bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs";
outputs = { self, bscpkgs }:
inputs.jungle.url = "git+https://jungle.bsc.es/git/rarias/jungle";
outputs = { self, jungle }:
let
nixpkgs = bscpkgs.inputs.nixpkgs;
nixpkgs = jungle.inputs.nixpkgs;
clusterOverlay = (final: prev: {
# Use cluster llvm compiler repo
clangOmpss2Unwrapped = prev.clangOmpss2Unwrapped.override {
@@ -15,8 +15,8 @@
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [
# Apply bscpkgs to get our BSC custom packages
bscpkgs.outputs.bscOverlay
# Apply jungle overlay to get our BSC custom packages
jungle.outputs.bscOverlay
# And on top apply our local changes to customize for cluster
clusterOverlay
];