Merge pull request #69345 from joachifm/feat/split-version

Replace uses of splitString for splitting version strings
This commit is contained in:
Joachim F
2019-09-27 06:19:18 +00:00
committed by GitHub
30 changed files with 59 additions and 44 deletions
@@ -9,9 +9,9 @@
}:
let
inherit (stdenv.lib) getVersion versionAtLeast splitString head;
inherit (stdenv.lib) getVersion versionAtLeast versions;
mainVersion = head (splitString "." (getVersion erlang));
mainVersion = versions.major (getVersion erlang);
proper = buildHex {
name = "proper";