remove remote mix input
This commit is contained in:
parent
498412e050
commit
0514b9d8c9
3 changed files with 7 additions and 79 deletions
73
flake.lock
generated
73
flake.lock
generated
|
|
@ -1,77 +1,6 @@
|
|||
{
|
||||
"nodes": {
|
||||
"mix": {
|
||||
"inputs": {
|
||||
"nib": "nib"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1768525804,
|
||||
"narHash": "sha256-jlpNb7Utqfdq2HESAB1mtddWHOsxKlTjPiLFRLd35r8=",
|
||||
"owner": "emilelcb",
|
||||
"repo": "mix",
|
||||
"rev": "617d8915a6518a3d4e375b87c50ae34d9daee6c6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "emilelcb",
|
||||
"repo": "mix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nib": {
|
||||
"inputs": {
|
||||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1768472076,
|
||||
"narHash": "sha256-bdVRCDy6oJx/CZiyxkke783FgtBW//wDuOAITUsQcNc=",
|
||||
"owner": "emilelcb",
|
||||
"repo": "nib",
|
||||
"rev": "42ac66dfc180a13af1cc8850397db66ec5556991",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "emilelcb",
|
||||
"repo": "nib",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"mix": "mix",
|
||||
"systems": "systems_2"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"systems_2": {
|
||||
"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",
|
||||
"version": 7
|
||||
|
|
|
|||
12
flake.nix
12
flake.nix
|
|
@ -1,11 +1,9 @@
|
|||
{
|
||||
description = "NixTypes (nt)";
|
||||
|
||||
inputs = {
|
||||
systems.url = "github:nix-systems/default";
|
||||
mix.url = "github:emilelcb/mix";
|
||||
};
|
||||
|
||||
outputs = {...} @ inputs:
|
||||
import ./nt inputs;
|
||||
outputs = _: let
|
||||
# nt depends on the mix subsystem for bootstrapping
|
||||
mix = import ./nt/primitives/mix;
|
||||
in
|
||||
import ./nt {inherit mix;};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ mix.newMixture inputs (mixture: {
|
|||
./nt.nix
|
||||
];
|
||||
submods.public = [
|
||||
./mix
|
||||
# TODO: make ./util private
|
||||
./util
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue