Merge pull request #134888 from Stunkymonkey/m2install-phases

This commit is contained in:
Sandro 2021-08-20 16:12:15 +02:00 committed by GitHub
commit 2b7f3d4ea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,10 @@ let
in stdenv.mkDerivation {
inherit name m2Path m2File src;
dontUnpack = true;
installPhase = ''
mkdir -p $out/m2/$m2Path
cp $src $out/m2/$m2Path/$m2File
'';
phases = "installPhase";
}