mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-30 10:07:33 +03:00
12 lines
442 B
Nix
12 lines
442 B
Nix
let
|
|
b = builtins;
|
|
flakeCompatSrc = b.fetchurl "https://raw.githubusercontent.com/edolstra/flake-compat/12c64ca55c1014cdc1b16ed5a804aa8576601ff2/default.nix";
|
|
flake = (import flakeCompatSrc {src = ./.;}).defaultNix;
|
|
pkgs = import flake.inputs.nixpkgs {};
|
|
recurseIntoAll = b.mapAttrs (name: val: pkgs.recurseIntoAttrs val);
|
|
in
|
|
recurseIntoAll {
|
|
checks = flake.checks.x86_64-linux;
|
|
packages = flake.packages.x86_64-linux;
|
|
}
|