bscpkgs/default.nix
2023-08-31 12:43:07 +02:00

20 lines
536 B
Nix

let
bscOverlay = import ./overlay.nix;
commit = "d680ded26da5cf104dd2735a51e88d2d8f487b4d";
# Pin the nixpkgs
nixpkgsPath = builtins.fetchTarball {
# Descriptive name to make the store path easier to identify
name = "nixpkgs-${commit}";
url = "https://github.com/nixos/nixpkgs/archive/${commit}.tar.gz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0xczslr40zy1wlg0ir8mwyyn5gz22i2f9dfd0vmgnk1664v4chky";
};
pkgs = import nixpkgsPath {
overlays = [ bscOverlay ];
};
in pkgs