Merge pull request #264701 from whiteley/simde-init
simde: init at 0.7.6
This commit is contained in:
commit
7a1f927eea
@ -19078,6 +19078,12 @@
|
||||
fingerprint = "640B EDDE 9734 310A BFA3 B257 52ED AE6A 3995 AFAB";
|
||||
}];
|
||||
};
|
||||
whiteley = {
|
||||
email = "mattwhiteley@gmail.com";
|
||||
github = "whiteley";
|
||||
githubId = 2215;
|
||||
name = "Matt Whiteley";
|
||||
};
|
||||
WhittlesJr = {
|
||||
email = "alex.joseph.whitt@gmail.com";
|
||||
github = "WhittlesJr";
|
||||
|
30
pkgs/by-name/si/simde/package.nix
Normal file
30
pkgs/by-name/si/simde/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, lib, fetchFromGitHub, meson, ninja }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "simde";
|
||||
version = "0.7.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simd-everywhere";
|
||||
repo = "simde";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-pj+zaD5o9XYkTavezcQFzM6ao0IdQP1zjP9L4vcCyEY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://simd-everywhere.github.io";
|
||||
description = "Implementations of SIMD instruction sets for systems which don't natively support them";
|
||||
license = with licenses; [mit];
|
||||
maintainers = with maintainers; [ whiteley ];
|
||||
platforms = flatten (with platforms; [
|
||||
arm
|
||||
armv7
|
||||
aarch64
|
||||
x86
|
||||
power
|
||||
mips
|
||||
]);
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user