yacy_search_server/flake.nix
Cody Mikol c6127e4f2e feat(nix): add a nix flake
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
2024-08-30 20:41:09 -04:00

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
];
};
});
}