nix: remove Hercules
This commit is contained in:
parent
f87b1ffccb
commit
37489ca53c
1 changed files with 12 additions and 14 deletions
24
flake.nix
24
flake.nix
|
@ -9,13 +9,17 @@
|
|||
flake-compat.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = inputs:
|
||||
let
|
||||
# Function that produces Flake outputs for the given system.
|
||||
# Consider this to be a function producing Flake outputs for the given system
|
||||
# and inputs; viz.:
|
||||
#
|
||||
# We use eachDefaultSystem (see below) to allow other architectures.
|
||||
# mkOutputsFrom :: Set Inputs -> System -> Set Outputs
|
||||
# mkOutputsFrom inputs system = { ... }
|
||||
#
|
||||
# We use eachDefaultSystem to allow other architectures.
|
||||
# cf. https://github.com/NixOS/nix/issues/3843#issuecomment-661720562
|
||||
outputsFor = system:
|
||||
outputs = inputs:
|
||||
inputs.flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let
|
||||
# Because: https://zimbatm.com/notes/1000-instances-of-nixpkgs
|
||||
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
||||
|
@ -81,12 +85,6 @@
|
|||
devShell = inputs.self.devShells.${system}.default;
|
||||
defaultPackage = inputs.self.packages.${system}.default;
|
||||
defaultApp = inputs.self.apps.${system}.default;
|
||||
};
|
||||
in
|
||||
inputs.flake-utils.lib.eachDefaultSystem outputsFor
|
||||
// {
|
||||
# For hercules-CI support,
|
||||
# https://docs.hercules-ci.com/hercules-ci/guides/upgrade-to-agent-0.9/#_upgrade_your_repositories
|
||||
herculesCI.ciSystems = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue