nimPackages.nimsimd: 1.0.0 -> 1.2.5

This commit is contained in:
Emery Hemingway 2023-08-02 13:45:20 +01:00
parent 0e5fcd671f
commit 12cf91863a

View File

@ -1,7 +1,18 @@
{ fetchNimble }:
{ lib, buildNimPackage, fetchFromGitHub }:
fetchNimble {
buildNimPackage (final: prev: {
pname = "nimsimd";
version = "1.0.0";
hash = "sha256-kp61fylAJ6MSN9hLYLi7CU2lxVR/lbrNCvZTe0LJLGo=";
}
version = "1.2.5";
src = fetchFromGitHub {
owner = "guzba";
repo = "nimsimd";
rev = final.version;
hash = "sha256-EYLzpzmNUwEOEndAwnUXCqpIUMmpinpiZq+P6zO0Kk8=";
};
meta = final.src.meta // {
description = "Pleasant Nim bindings for SIMD instruction sets";
homepage = "https://github.com/guzba/nimsimd";
license = [ lib.licenses.mit ];
maintainers = with lib.maintainers; [ ehmry ];
};
})