pin nixpkgs using a tarball rather than submodule
Submodules are too much of a headache; this commit switches to pinning a known-good nixpkgs using a tarball rather than a submodule.master
parent
b564f8897f
commit
69c09a294e
@ -1 +0,0 @@
|
||||
Subproject commit db24d86dd8a4769c50d6b7295e81aa280cd93f35
|
@ -0,0 +1,7 @@
|
||||
let
|
||||
commit = "db24d86dd8a4769c50d6b7295e81aa280cd93f35";
|
||||
sha256 = "1l8r5cmb6wdhv2zpn5dx16753z15pqm1wyixga3k897jvw53gx3s";
|
||||
in builtins.fetchTarball {
|
||||
url = "https://github.com/NixOS/nixpkgs/archive/${commit}.tar.gz";
|
||||
inherit sha256;
|
||||
}
|
Loading…
Reference in New Issue