-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
31 lines (28 loc) · 873 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
mavenPackage = buildMaven ./project-info.json;
mavenBuild = lib.overrideDerivation mavenPackage.build (oldAttrs: {
installPhase = ''
mvn --offline --settings ${mavenPackage.settings} package
mkdir $out
mv target/*.jar $out
'';
});
in
{
build = stdenv.mkDerivation rec {
name = "wordCount-${version}";
version = "0.0.1";
src = ./.;
buildInputs = [ makeWrapper jre ];
installPhase = ''
mkdir -p $out/{bin,lib}
cp -r ${mavenBuild}/*.jar $out/lib
cp ./scripts/wordCount $out/bin
chmod +x $out/bin/wordCount
sed -i s@OUT@$out@g $out/bin/wordCount
wrapProgram $out/bin/wordCount --prefix PATH : ${jre}/bin/
'';
};
}