This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
server/flake.nix

64 lines
1.4 KiB
Nix
Raw Normal View History

2024-05-22 19:43:12 +02:00
{
description = "Learning Pulse";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
2024-05-22 19:43:12 +02:00
};
outputs =
{ self
, nixpkgs
, maven
, makeWrapper
2024-05-24 09:37:55 +02:00
, ...
}:
2024-05-22 19:43:12 +02:00
let
overlays = [
(final: prev: rec {
2024-05-24 09:37:55 +02:00
jdk = prev."jdk22";
2024-05-22 19:43:12 +02:00
maven = prev.maven.override { inherit jdk; };
})
];
2024-05-24 09:37:55 +02:00
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
];
2024-05-22 19:43:12 +02:00
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit overlays system; };
});
2024-05-22 19:43:12 +02:00
in
{
2024-05-24 09:37:55 +02:00
packages = {
learningpulse-discovery = with lib; maven.buildMavenPackage {
pname = "learningpulse-discovery";
version = "1.1.1";
src = ./eurika;
# todo get hash from package
mvnHash = lib.fakeSha256;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin $out/share/jd-cli
install -Dm644 jd-cli/target/jd-cli.jar $out/share/jd-cli
makeWrapper ${nixpkgs.pkgs.jre8}/bin/java $out/bin/jd-cli \
--add-flags "-jar $out/share/jd-cli/jd-cli.jar"
'';
};
};
2024-05-22 19:43:12 +02:00
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [
jdk
maven
];
};
});
};
}