Switch bscpkgs input to jungle
Some checks failed
CI / build:rt (pull_request) Failing after 6m38s
CI / build:asan (pull_request) Failing after 8m48s
CI / build:debug (pull_request) Successful in 22m27s
CI / build:nompi (pull_request) Successful in 20m37s
CI / build:compilers (pull_request) Successful in 18m22s
CI / build:local (pull_request) Successful in 23m13s

The bscpkgs repository has been merged into jungle.

See: rarias/jungle#189
This commit is contained in:
Rodrigo Arias 2025-10-10 12:57:26 +02:00
parent e5f603f1e5
commit f87ab0f4dd
2 changed files with 98 additions and 12 deletions

101
flake.lock generated
View File

@ -1,23 +1,93 @@
{ {
"nodes": { "nodes": {
"bscpkgs": { "agenix": {
"inputs": { "inputs": {
"darwin": "darwin",
"home-manager": "home-manager",
"nixpkgs": [
"jungle",
"nixpkgs"
],
"systems": "systems"
},
"locked": {
"lastModified": 1750173260,
"narHash": "sha256-9P1FziAwl5+3edkfFcr5HeGtQUtrSdk/MksX39GieoA=",
"owner": "ryantm",
"repo": "agenix",
"rev": "531beac616433bac6f9e2a19feb8e99a22a66baf",
"type": "github"
},
"original": {
"owner": "ryantm",
"repo": "agenix",
"type": "github"
}
},
"darwin": {
"inputs": {
"nixpkgs": [
"jungle",
"agenix",
"nixpkgs"
]
},
"locked": {
"lastModified": 1744478979,
"narHash": "sha256-dyN+teG9G82G+m+PX/aSAagkC+vUv0SgUw3XkPhQodQ=",
"owner": "lnl7",
"repo": "nix-darwin",
"rev": "43975d782b418ebf4969e9ccba82466728c2851b",
"type": "github"
},
"original": {
"owner": "lnl7",
"ref": "master",
"repo": "nix-darwin",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
"jungle",
"agenix",
"nixpkgs"
]
},
"locked": {
"lastModified": 1745494811,
"narHash": "sha256-YZCh2o9Ua1n9uCvrvi5pRxtuVNml8X2a03qIFfRKpFs=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "abfad3d2958c9e6300a883bd443512c55dfeb1be",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "home-manager",
"type": "github"
}
},
"jungle": {
"inputs": {
"agenix": "agenix",
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"
] ]
}, },
"locked": { "locked": {
"lastModified": 1757680122, "lastModified": 1760090908,
"narHash": "sha256-V8sN1npm8aE4o0CJROU4B7cUUzkla21wn2jud3F/pPU=", "narHash": "sha256-x/a2ONesLmzPk+PTMeljqzWKDKobEZf1UFb94pkvoKk=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "c7b5ec13b8d596a79942e5bd18ea7049472613b9", "rev": "1fba0a14a8e29b738667f18c1cd8e2e62ed94a52",
"revCount": 984, "revCount": 1483,
"type": "git", "type": "git",
"url": "https://git.sr.ht/~rodarima/bscpkgs" "url": "https://jungle.bsc.es/git/rarias/jungle"
}, },
"original": { "original": {
"type": "git", "type": "git",
"url": "https://git.sr.ht/~rodarima/bscpkgs" "url": "https://jungle.bsc.es/git/rarias/jungle"
} }
}, },
"nixpkgs": { "nixpkgs": {
@ -37,9 +107,24 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"bscpkgs": "bscpkgs", "jungle": "jungle",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@ -1,11 +1,12 @@
{ {
inputs.nixpkgs.url = "nixpkgs/9c6b49aeac36e2ed73a8c472f1546f6d9cf1addc"; inputs.nixpkgs.url = "nixpkgs/9c6b49aeac36e2ed73a8c472f1546f6d9cf1addc";
inputs.bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs"; inputs.jungle.url = "git+https://jungle.bsc.es/git/rarias/jungle";
inputs.bscpkgs.inputs.nixpkgs.follows = "nixpkgs"; #inputs.jungle.url = "git+https://git.sr.ht/~rodarima/jungle"; # backup
inputs.jungle.inputs.nixpkgs.follows = "nixpkgs";
nixConfig.bash-prompt = "\[nix-develop\]$ "; nixConfig.bash-prompt = "\[nix-develop\]$ ";
outputs = { self, nixpkgs, bscpkgs }: outputs = { self, nixpkgs, jungle }:
let let
# Set to true to replace all libovni in all runtimes with the current # Set to true to replace all libovni in all runtimes with the current
# source. Causes large rebuilds on changes of ovni. # source. Causes large rebuilds on changes of ovni.
@ -72,7 +73,7 @@
pkgs = import nixpkgs { pkgs = import nixpkgs {
system = "x86_64-linux"; system = "x86_64-linux";
overlays = [ overlays = [
bscpkgs.bscOverlay jungle.bscOverlay
ovniOverlay ovniOverlay
]; ];
}; };