about summary refs log tree commit diff
path: root/pkgs/development/libraries/mesa
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/development/libraries/mesa
parent2d4352b1ae57a06670b451f1b4426beff9796628 (diff)
downloadnixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar.gz
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar.bz2
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar.lz
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar.xz
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.tar.zst
nixlib-bad07dfac57c36dff1c7b3fd4020fea806d7be93.zip
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/development/libraries/mesa')
-rw-r--r--pkgs/development/libraries/mesa/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index cf1bdaf64323..3a7c93413d54 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -28,7 +28,7 @@ with stdenv.lib;
 
 let
   version = "19.1.5";
-  branch  = head (splitString "." version);
+  branch  = versions.major version;
 in
 
 stdenv.mkDerivation {