This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-packages/hydra/default.nix

17 lines
352 B
Nix
Raw Normal View History

2023-01-21 09:41:31 +01:00
{
nix-packages,
nixpkgs,
system,
}: let
2023-01-21 12:14:25 +01:00
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
allowUnsupportedSystem = true;
};
};
2023-01-21 11:25:00 +01:00
ci = import nix-packages {inherit pkgs;};
isReserved = n: n == "lib" || n == "overlays" || n == "modules";
2023-01-21 09:41:31 +01:00
in
2023-01-21 12:03:25 +01:00
pkgs.lib.filterAttrs (name: _: !(isReserved name)) ci