blob: 21e7f17a2e85f7c2a26e312c122c881e0200085d (
plain)
1
2
3
4
5
6
7
8
|
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
|