Merge pull request #682 from bloxx12/refactor-flake
flake: drop flake-utils as a dependencypull/689/head
commit
3ce4dbdac8
@ -1,17 +1,19 @@
|
|||||||
{
|
{
|
||||||
description = "YaCy -- distributed search engine";
|
description = "YaCy -- distributed search engine";
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, flake-utils }:
|
outputs = inputs: let
|
||||||
flake-utils.lib.eachDefaultSystem (system: let
|
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
forEachSystem = inputs.nixpkgs.lib.genAttrs systems;
|
||||||
|
pkgsForEach = inputs.nixpkgs.legacyPackages;
|
||||||
in {
|
in {
|
||||||
devShells.default = pkgs.mkShell {
|
devShells = forEachSystem (system: {
|
||||||
packages = [
|
default = pkgsForEach.${system}.mkShell {
|
||||||
|
packages = with pkgsForEach.${system}; [
|
||||||
pkgs.ant
|
pkgs.ant
|
||||||
pkgs.temurin-bin-11
|
pkgs.temurin-bin-11
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue