Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / si / simde / package.nix
blobc79cbf38f7cd1dcc0fefc332de00b1f75eb08bb0
1 { stdenv, lib, fetchFromGitHub, meson, ninja }:
3 stdenv.mkDerivation rec {
4   pname = "simde";
5   version = "0.7.6";
7   src = fetchFromGitHub {
8     owner = "simd-everywhere";
9     repo = "simde";
10     rev = "v${version}";
11     hash = "sha256-pj+zaD5o9XYkTavezcQFzM6ao0IdQP1zjP9L4vcCyEY=";
12   };
14   nativeBuildInputs = [ meson ninja ];
16   meta = with lib; {
17     homepage = "https://simd-everywhere.github.io";
18     description = "Implementations of SIMD instruction sets for systems which don't natively support them";
19     license = with licenses; [mit];
20     maintainers = with maintainers; [ whiteley ];
21     platforms = flatten (with platforms; [
22       arm
23       armv7
24       aarch64
25       x86
26       power
27       mips
28     ]);
29   };