2005
e55f1e1bbe
All checks were successful
build and publish docker image / deploy / build (push) Successful in 1m45s
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
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|