k3s: Avoid string conversion

This commit is contained in:
Sandro Jäckel 2021-02-04 15:32:14 +01:00
parent 5e3a73dba1
commit 0c9db04497
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -120,7 +120,7 @@ let
# with generated bindata yet.
k3sBuildStage1 = buildGoPackage rec {
name = "k3s-build-1";
version = "${k3sVersion}";
version = k3sVersion;
goPackagePath = "github.com/rancher/k3s";
@ -160,7 +160,7 @@ let
};
k3sBin = buildGoPackage rec {
name = "k3s-bin";
version = "${k3sVersion}";
version = k3sVersion;
goPackagePath = "github.com/rancher/k3s";