summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/openshift
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2019-09-24 11:24:13 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2019-09-26 17:42:49 +0200
commitbad07dfac57c36dff1c7b3fd4020fea806d7be93 (patch)
tree2032f09b50cd998edf1db3f8122c8d2916a0ad14 /pkgs/applications/networking/cluster/openshift
parent2d4352b1ae57a06670b451f1b4426beff9796628 (diff)
tree-wide: replace uses of splitString "." with lib.versions
Quoting from the splitString docstring: NOTE: this function is not performant and should never be used. This replaces trivial uses of splitString for splitting version strings with the (potentially builtin) splitVersion.
Diffstat (limited to 'pkgs/applications/networking/cluster/openshift')
-rw-r--r--pkgs/applications/networking/cluster/openshift/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/openshift/default.nix b/pkgs/applications/networking/cluster/openshift/default.nix
index 758786f586a6..3b96ef4ea45e 100644
--- a/pkgs/applications/networking/cluster/openshift/default.nix
+++ b/pkgs/applications/networking/cluster/openshift/default.nix
@@ -10,7 +10,7 @@ with lib;
let
version = "3.11.0";
- ver = stdenv.lib.elemAt (stdenv.lib.splitString "." version);
+ ver = stdenv.lib.elemAt (stdenv.lib.splitVersion version);
versionMajor = ver 0;
versionMinor = ver 1;
versionPatch = ver 2;