bscpkgs/default.nix

12 lines
176 B
Nix
Raw Permalink Normal View History

2020-06-09 00:01:33 +08:00
let
2020-09-16 18:22:55 +08:00
bscOverlay = import ./overlay.nix;
2021-01-11 23:41:56 +08:00
# Pin the nixpkgs
nixpkgsPath = import ./nixpkgs.nix;
2021-01-11 23:41:56 +08:00
pkgs = import nixpkgsPath {
2020-09-16 18:22:55 +08:00
overlays = [ bscOverlay ];
2020-06-10 00:21:02 +08:00
};
2020-06-17 19:00:49 +08:00
2020-09-16 18:22:55 +08:00
in pkgs