Merge pull request #251019 from TomaSajt/build-maven-package

buildMavenPackage: inherit sourceRoot
This commit is contained in:
Weijia Wang 2023-08-29 08:50:01 +02:00 committed by GitHub
commit c232bf8835
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
}:
{ src
, sourceRoot ? null
, patches ? [ ]
, pname
, version
@ -19,7 +20,7 @@
let
fetchedMavenDeps = stdenv.mkDerivation ({
name = "${pname}-${version}-maven-deps";
inherit src patches;
inherit src sourceRoot patches;
nativeBuildInputs = [
maven