19 lines
497 B
Nix
19 lines
497 B
Nix
{stdenv, fetchFromGitHub}: stdenv.mkDerivation rec {
|
|
pname = "plexus-compiler";
|
|
version = "1.2";
|
|
outPom = "pom.xml";
|
|
org = "plexus";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codehaus-plexus";
|
|
repo = "plexus-pom";
|
|
rev = "8e56595aa5c89ba6fc76bac2bd8426333e2495bb";
|
|
hash = "sha256-C84gYXqfE+7aofPIALChnbOSB39ZRrg0ZoHgQ5B2ATg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp ./plexus-components/plexus-compiler/pom.xml $out/pom.xml
|
|
'';
|
|
}
|