mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-01-22 05:08:42 -05:00
c6127e4f2e
nix flakes allow developers using NixOS or the nix package manager to quickly set up a working development environment with the correct dependencies. Fixes N/A
18 lines
473 B
Nix
18 lines
473 B
Nix
{
|
|
description = "YaCy -- distributed search engine";
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
packages = [
|
|
pkgs.ant
|
|
pkgs.temurin-bin-11
|
|
];
|
|
};
|
|
});
|
|
}
|