Skip to content

Commit

Permalink
Merge pull request #657 from codymikol/nixify
Browse files Browse the repository at this point in the history
feat(nix): add a nix flake
  • Loading branch information
Orbiter authored Nov 25, 2024
2 parents 0d58f60 + c6127e4 commit 51c612f
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
61 changes: 61 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
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
];
};
});
}

0 comments on commit 51c612f

Please sign in to comment.