19 lines
464 B
Nix
19 lines
464 B
Nix
{stdenv, fetchurl}: stdenv.mkDerivation rec {
|
|
pname = "plexus";
|
|
version = "0.6";
|
|
outJar = "plexus-0.6.jar";
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://repo1.maven.org/maven2/plexus/plexus/0.6/plexus-0.6.jar";
|
|
hash = "sha256-cvnpWpRfRglWiFeiq+/6RbHCI5i81noBb1iofMkAWLw=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp -r ${src} $out/plexus-0.6.jar
|
|
'';
|
|
}
|