You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/flake.nix

20 lines
560 B

{
description = "YaCy -- distributed search engine";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = inputs: let
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
forEachSystem = inputs.nixpkgs.lib.genAttrs systems;
pkgsForEach = inputs.nixpkgs.legacyPackages;
in {
devShells = forEachSystem (system: {
default = pkgsForEach.${system}.mkShell {
packages = with pkgsForEach.${system}; [
pkgs.ant
pkgs.temurin-bin-11
];
};
});
};
}