26 lines
493 B
Nix
26 lines
493 B
Nix
|
{
|
||
|
description = "Developer shell for lp";
|
||
|
inputs = {
|
||
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||
|
};
|
||
|
outputs = { self, nixpkgs, ... }:
|
||
|
let
|
||
|
# TODO add more systems
|
||
|
system = "x86_64-linux";
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in
|
||
|
rec {
|
||
|
|
||
|
devShells."${system}".default = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
maven
|
||
|
jdk22
|
||
|
jre8
|
||
|
# top run actions locally
|
||
|
act
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|