mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-02 00:00:03 +03:00
10 lines
335 B
Nix
10 lines
335 B
Nix
|
let
|
||
|
# Grab the versions we specified in the JSON file
|
||
|
nixpkgs = builtins.fromJSON (builtins.readFile ./nixpkgs.json);
|
||
|
|
||
|
# Bootstrap a copy of nixpkgs, based on this.
|
||
|
src = import ./fetchnix.nix { inherit (nixpkgs) url rev sha256; };
|
||
|
|
||
|
# We use the default nixpkgs configuration during bootstrap.
|
||
|
in import src { config = {}; }
|