blob: 040bc2473a874629f085bff001da878c244a6a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
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
];
};
});
};
}
|