forked from nrabulinski/attic
flake.nix: Revert nixpkgs pin to December 2022
nixos-unstable has been so bumpy this year and it's getting frustrating :(
This commit is contained in:
parent
9fdec3397d
commit
a0a29b01cf
2 changed files with 12 additions and 10 deletions
15
flake.lock
15
flake.lock
|
@ -14,16 +14,17 @@
|
||||||
"rust-overlay": "rust-overlay"
|
"rust-overlay": "rust-overlay"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1675451374,
|
"lastModified": 1673405853,
|
||||||
"narHash": "sha256-WRV5qJqJuhdPirb2IBwGJgJrZk6sA4Nfj0KwUrONg98=",
|
"narHash": "sha256-6Nq9DuOo+gE2I8z5UZaKuumykz2xxZ9JGYmUthOuwSA=",
|
||||||
"owner": "ipetkov",
|
"owner": "ipetkov",
|
||||||
"repo": "crane",
|
"repo": "crane",
|
||||||
"rev": "9aebc95cd1e12761ad593aeb0c26bc0785015b7f",
|
"rev": "b13963c8c18026aa694acd98d14f66d24666f70b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "ipetkov",
|
"owner": "ipetkov",
|
||||||
"repo": "crane",
|
"repo": "crane",
|
||||||
|
"rev": "b13963c8c18026aa694acd98d14f66d24666f70b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -60,17 +61,17 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1675153841,
|
"lastModified": 1672428209,
|
||||||
"narHash": "sha256-EWvU3DLq+4dbJiukfhS7r6sWZyJikgXn6kNl7eHljW8=",
|
"narHash": "sha256-eejhqkDz2cb2vc5VeaWphJz8UXNuoNoM8/Op8eWv2tQ=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "ea692c2ad1afd6384e171eabef4f0887d2b882d3",
|
"rev": "293a28df6d7ff3dec1e61e37cc4ee6e6c0fb0847",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "ea692c2ad1afd6384e171eabef4f0887d2b882d3",
|
"rev": "293a28df6d7ff3dec1e61e37cc4ee6e6c0fb0847",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,13 +2,14 @@
|
||||||
description = "A Nix binary cache server";
|
description = "A Nix binary cache server";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# FIXME: Debug issue preventing interactive builds from working
|
# FIXME: Bump after the next staging-next merge
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/ea692c2ad1afd6384e171eabef4f0887d2b882d3";
|
# Unstable has been a bumpy ride this year :(
|
||||||
|
nixpkgs.url = "github:NixOS/nixpkgs/293a28df6d7ff3dec1e61e37cc4ee6e6c0fb0847";
|
||||||
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-22.11";
|
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-22.11";
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
|
||||||
crane = {
|
crane = {
|
||||||
url = "github:ipetkov/crane";
|
url = "github:ipetkov/crane/b13963c8c18026aa694acd98d14f66d24666f70b";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
inputs.flake-compat.follows = "flake-compat";
|
inputs.flake-compat.follows = "flake-compat";
|
||||||
inputs.flake-utils.follows = "flake-utils";
|
inputs.flake-utils.follows = "flake-utils";
|
||||||
|
|
Loading…
Reference in a new issue