nixpkgs/pkgs/development/java-modules/build-maven-package.nix

27 lines
1000 B
Nix
Raw Normal View History

2016-10-31 13:38:28 +00:00
{ stdenv, maven, lib, pkgs }:
2016-10-30 15:41:20 +00:00
{ mavenDeps, src, name, meta, m2Path, ... }:
with builtins;
with lib;
stdenv.mkDerivation rec {
inherit mavenDeps src name meta m2Path;
2016-10-31 13:38:28 +00:00
flatDeps = unique (flatten (mavenDeps ++ pkgs.javaPackages.mavenPlugins.mavenMinimal));
2016-10-30 15:41:20 +00:00
propagatedBuildInput = [ maven ] ++ flatDeps;
find = ''find ${foldl' (x: y: x + " " + y) "" (map (x: x + "/m2/") flatDeps)} -type d -printf '%P\n' | xargs -I {} mkdir -p $out/m2/{}'';
copy = ''cp -rs ${foldl' (x: y: x + " " + y) "" (map (x: x + "/m2/*") flatDeps)} $out/m2'';
buildPhase = ''
mkdir -p $out/m2/${m2Path}
${optionalString (length flatDeps > 0) find}
${optionalString (length flatDeps > 0) copy}
echo "<settings><mirrors>\
<mirror><id>tmpm2</id><url>file://$out/m2</url><mirrorOf>*</mirrorOf></mirror></mirrors>\
<localRepository>$out/m2</localRepository></settings>" >> $out/m2/settings.xml
${maven}/bin/mvn clean install -Dmaven.test.skip=true -gs $out/m2/settings.xml
'';
}