Compare commits

..

No commits in common. "571578dca0073a3aef88389842ab23eb3266d093" and "d2ff64307056040e3157b0fdb736c3ca14c99064" have entirely different histories.

View file

@ -31,8 +31,26 @@
gateway = maven.buildMavenPackage rec {
pname = "learningpulse-gateway";
version = "1.2.1";
#
# hello i wrote something here to test pulling
src = ./gateway;
mvnHash = "sha256-kLpjMj05uC94/5vGMwMlFzLKNFOKeyNvq/vmB6pHTAo=";
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin $out/share/jd-cli
install -Dm644 jd-cli/target/jd-cli.jar $out/share/jd-cli
makeWrapper ${jre8}/bin/java $out/bin/jd-cli \
--add-flags "-jar $out/share/jd-cli/jd-cli.jar"
'';
meta = with lib; {
description = "The api gateway for learningpulse";
homepage = "https://git.4o1x5.dev/learningpulse/server";
license = licenses.gpl3Plus;
};
};
};