Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
793 B
Nix
44 lines
793 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "simde";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simd-everywhere";
|
|
repo = "simde";
|
|
rev = "v${version}";
|
|
hash = "sha256-igjDHCpKXy6EbA9Mf6peL4OTVRPYTV0Y2jbgYQuWMT4=";
|
|
};
|
|
|
|
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
|
|
riscv
|
|
]
|
|
);
|
|
};
|
|
}
|