Fix nvfetcher by using forked nixpkgs

See upstream issue: https://github.com/NixOS/nixpkgs/issues/249962
pull/254/head
teutat3s 2023-09-13 12:38:12 +02:00
parent 110e0aefad
commit dfd80c0e95
Signed by: teutat3s
GPG Key ID: 4FA1D3FA524F22C1
3 changed files with 24 additions and 0 deletions

View File

@ -197,6 +197,22 @@
"type": "github"
}
},
"fork": {
"locked": {
"lastModified": 1692960587,
"narHash": "sha256-39SKGdhn8jKKkdqhULbCvQOpdUPE9NNJpy5HTB++Jvg=",
"owner": "teutat3s",
"repo": "nixpkgs",
"rev": "312709dd70684f52496580e533d58645526b1c90",
"type": "github"
},
"original": {
"owner": "teutat3s",
"ref": "nvfetcher-fix",
"repo": "nixpkgs",
"type": "github"
}
},
"home": {
"inputs": {
"nixpkgs": [
@ -288,6 +304,7 @@
"deploy": "deploy",
"digga": "digga",
"flake-compat": "flake-compat",
"fork": "fork",
"home": "home",
"latest": "latest",
"nixos": "nixos",

View File

@ -8,6 +8,8 @@
nixos.url = "github:nixos/nixpkgs/nixos-23.05";
latest.url = "github:nixos/nixpkgs/nixos-unstable";
fork.url = "github:teutat3s/nixpkgs/nvfetcher-fix";
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
@ -69,6 +71,7 @@
];
};
latest = {};
fork = {};
};
lib = import ./lib {lib = digga.lib // nixos.lib;};

View File

@ -4,6 +4,10 @@ channels: final: prev: {
inherit
(channels.latest)
nixd
;
inherit
(channels.fork)
nvfetcher
;