treewide: remove redundant rec
This commit is contained in:
@@ -5,11 +5,11 @@ let
|
||||
name = "${artifactId}-${version}";
|
||||
m2Path = "${builtins.replaceStrings ["."] ["/"] groupId}/${artifactId}/${version}";
|
||||
m2File = "${name}${suffix}.${type}";
|
||||
src = fetchurl rec {
|
||||
src = fetchurl {
|
||||
inherit sha512;
|
||||
url = "mirror://maven/${m2Path}/${m2File}";
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
in stdenv.mkDerivation {
|
||||
inherit name m2Path m2File src;
|
||||
|
||||
installPhase = ''
|
||||
|
||||
Reference in New Issue
Block a user