default: build all platforms in ci
This commit is contained in:
parent
8ce3db6326
commit
78adcf86dc
25
default.nix
25
default.nix
|
@ -1,10 +1,15 @@
|
|||
(import
|
||||
(
|
||||
fetchTarball {
|
||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
||||
sha256 = "sha256:0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
|
||||
}
|
||||
)
|
||||
{
|
||||
src = ./.;
|
||||
}).defaultNix.packages.x86_64-linux
|
||||
let
|
||||
inherit (flake.inputs.nixos.lib) recurseIntoAttrs mapAttrs;
|
||||
flake = (import
|
||||
(
|
||||
fetchTarball {
|
||||
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
|
||||
sha256 = "sha256:0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
|
||||
}
|
||||
)
|
||||
{
|
||||
src = ./.;
|
||||
}).defaultNix;
|
||||
recurse = mapAttrs (_: v: recurseIntoAttrs v) flake.packages;
|
||||
in
|
||||
recurse
|
||||
|
|
Loading…
Reference in a new issue