blob: 11c20380a630adda95ce469107b48e551140b3b3 (
plain)
1
2
3
4
5
6
7
8
9
|
let
json = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
nixpkgs = import (builtins.fetchTarball {
name = "nixos-unstable";
url = "${json.url}/archive/${json.rev}.tar.gz";
inherit (json) sha256;
});
in
nixpkgs
|