mirror of
https://codeberg.org/puppe/financier-nix.git
synced 2025-12-20 00:12:17 +01:00
Make systems overridable
This commit is contained in:
parent
4fac16904d
commit
c6f236f787
2 changed files with 43 additions and 25 deletions
18
flake.lock
generated
18
flake.lock
generated
|
|
@ -50,7 +50,23 @@
|
|||
"inputs": {
|
||||
"financier": "financier",
|
||||
"flake-utils": "flake-utils",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs",
|
||||
"systems": "systems"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
inputs.systems.url = "github:nix-systems/default";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
inputs.financier = {
|
||||
url = "github:puppe/financier/fix-yarn2nix";
|
||||
|
|
@ -6,7 +7,8 @@
|
|||
};
|
||||
|
||||
outputs = inputs@{ self, nixpkgs, ... }:
|
||||
inputs.flake-utils.lib.eachDefaultSystem (system:
|
||||
inputs.flake-utils.lib.eachSystem (import inputs.systems)
|
||||
(system:
|
||||
let pkgs = import nixpkgs { inherit system; };
|
||||
in {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue