masterthesis/nix/fetch-nixpkgs.nix
2021-02-03 10:44:28 +01:00

7 lines
209 B
Nix

let
spec = builtins.fromJSON (builtins.readFile ./nixpkgs-src.json);
in builtins.fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
inherit (spec) sha256;
}