forked from pub-solar/os
1
0
Fork 0

default: build all platforms in ci

feature/wayvnc
Timothy DeHerrera 2021-01-18 10:34:53 -07:00
parent 8ce3db6326
commit 78adcf86dc
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
1 changed files with 15 additions and 10 deletions

View File

@ -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