ofborg/release.nix

12 lines
279 B
Nix
Raw Normal View History

2017-11-30 13:05:26 +00:00
{ nixpkgs ? ./nix
, supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ]
}:
let
pkgs = import nixpkgs {};
inherit (pkgs) lib;
ofborgpkgs = lib.genAttrs supportedSystems (system:
(import ./default.nix { pkgs = import nixpkgs { inherit system; }; })
);
in ofborgpkgs