nixpkgs/pkgs/by-name/si/simde/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
736 B
Nix
Raw Normal View History

2023-11-01 03:28:55 +00:00
{ stdenv, lib, fetchFromGitHub, meson, ninja }:
2023-11-01 00:37:05 +00:00
stdenv.mkDerivation rec {
pname = "simde";
2024-05-02 14:49:44 +00:00
version = "0.8.2";
2023-11-01 00:37:05 +00:00
src = fetchFromGitHub {
owner = "simd-everywhere";
repo = "simde";
rev = "v${version}";
2024-05-02 14:49:44 +00:00
hash = "sha256-igjDHCpKXy6EbA9Mf6peL4OTVRPYTV0Y2jbgYQuWMT4=";
2023-11-01 00:37:05 +00:00
};
2023-11-01 03:28:55 +00:00
nativeBuildInputs = [ meson ninja ];
2023-11-01 00:37:05 +00:00
meta = with lib; {
homepage = "https://simd-everywhere.github.io";
2023-11-01 03:31:44 +00:00
description = "Implementations of SIMD instruction sets for systems which don't natively support them";
2023-11-01 00:37:05 +00:00
license = with licenses; [mit];
2023-11-01 03:39:56 +00:00
maintainers = with maintainers; [ whiteley ];
2023-11-01 03:31:11 +00:00
platforms = flatten (with platforms; [
arm
armv7
aarch64
x86
power
mips
2024-03-14 22:51:19 +00:00
riscv
2023-11-01 03:31:11 +00:00
]);
2023-11-01 00:37:05 +00:00
};
}