treewide .goModules: revert renaming the derivation

This is a workaround to avoid exposing non-reproducible .goModules
At least for now.
https://github.com/NixOS/nixpkgs/pull/242905#issuecomment-1646820126
This commit is contained in:
Artturin 2023-07-24 08:01:24 +02:00 committed by Vladimír Čunát
parent aae1f8ef06
commit 7da39a7a9e
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -54,7 +54,7 @@ let
goModules = if (vendorHash == null) then "" else
(stdenv.mkDerivation {
name = "${name}-goModules";
name = "${name}-go-modules";
nativeBuildInputs = (args.nativeBuildInputs or [ ]) ++ [ go git cacert ];