bonfire/packages/default.nix
2023-12-19 11:52:26 +05:00

11 lines
288 B
Nix

{ self, nixpkgs, ... }:
let
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" ];
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in forAllSystems(system: let pkgs = nixpkgsFor.${system}; in {
example = pkgs.callPackage ./example {};
})