bonfire/devShells/default.nix

14 lines
376 B
Nix
Raw Normal View History

2023-12-19 12:36:54 +05:00
{ self, nixpkgs, ... }:
let
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in forAllSystems(system: let
pkgs = nixpkgsFor.${system};
bpkgs = self.packages.${system};
blib = self.lib;
in {
netgen = import ./netgen.nix { inherit pkgs bpkgs; };
})