lol

libhwy: 1.0.5 -> 1.0.7

Changes: https://github.com/google/highway/releases/tag/1.0.6
Changes: https://github.com/google/highway/releases/tag/1.0.7

+10 -12
+10 -12
pkgs/development/libraries/libhwy/default.nix
··· 1 - { lib, stdenv, cmake, ninja, gtest, fetchFromGitHub, fetchpatch }: 1 + { lib 2 + , stdenv 3 + , cmake 4 + , ninja 5 + , gtest 6 + , fetchFromGitHub 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 10 pname = "libhwy"; 5 - version = "1.0.5"; 11 + version = "1.0.7"; 6 12 7 13 src = fetchFromGitHub { 8 14 owner = "google"; 9 15 repo = "highway"; 10 16 rev = version; 11 - hash = "sha256-Gym2iHq5ws9kuG4HWSQndD8hVugV4USZt6dUFnEkLwY="; 17 + hash = "sha256-Z+mAR9nSAbCskUvo6oK79Yd85bu0HtI2aR5THS1EozM="; 12 18 }; 13 - patches = [ 14 - # backport for compilation issue on aarch64 15 - # https://github.com/google/highway/issues/1613 16 - (fetchpatch { 17 - url = "https://github.com/google/highway/commit/7ad89efa911cb906ccf3f78fe510db415e921801.diff"; 18 - hash = "sha256-hTSkeCh2QLMqeIKG/CAqJXaPqD/66Z02gjGXk591f+U="; 19 - }) 20 - ]; 21 19 22 20 nativeBuildInputs = [ cmake ninja ]; 23 21 ··· 53 51 meta = with lib; { 54 52 description = "Performance-portable, length-agnostic SIMD with runtime dispatch"; 55 53 homepage = "https://github.com/google/highway"; 56 - license = licenses.asl20; 54 + license = with licenses; [ asl20 bsd3 ]; 57 55 platforms = platforms.unix; 58 56 maintainers = with maintainers; [ zhaofengli ]; 59 57 };