refactor(flake): make nix-eval-jobs's flake-utils follow ours

This avoids having a duplicated flake-utils entry in the lockfile
This commit is contained in:
Bernardo Meurer 2022-10-08 23:33:25 -03:00
parent 8bec45393e
commit 2d98088877
No known key found for this signature in database
2 changed files with 9 additions and 19 deletions

View file

@ -31,24 +31,11 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_2": {
"locked": {
"lastModified": 1659877975,
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nix-eval-jobs": { "nix-eval-jobs": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_2", "flake-utils": [
"flake-utils"
],
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"
] ]

View file

@ -7,9 +7,12 @@
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
nix-eval-jobs = {
# Temporary fork of nix-eval-job with changes to be upstreamed # Temporary fork of nix-eval-job with changes to be upstreamed
nix-eval-jobs.url = "github:zhaofengli/nix-eval-jobs/colmena"; url = "github:zhaofengli/nix-eval-jobs/colmena";
nix-eval-jobs.inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat";