wfa2-lib: init at 2.3.3

This commit is contained in:
Red Star Over Earth 2023-08-15 08:50:14 +08:00 committed by Anderson Torres
parent 2785d92e77
commit 1367bd5d2a
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, llvmPackages
, enableOpenMP ? true
}:
stdenv.mkDerivation rec {
pname = "wfa2-lib";
version = "2.3.3";
src = fetchFromGitHub {
owner = "smarco";
repo = "WFA2-lib";
rev = "v${version}";
hash = "sha256-PLZhxKMBhKm6E/ENFZ/yWMWIwJG5voaJls2in44OGoQ=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = lib.optionals enableOpenMP [ llvmPackages.openmp ];
cmakeFlags = [ "-DOPENMP=${if enableOpenMP then "ON" else "OFF"}" ];
meta = with lib; {
description = "Wavefront alignment algorithm library v2";
homepage = "https://github.com/smarco/WFA2-lib";
license = licenses.mit;
maintainers = with maintainers; [ rs0vere ];
platforms = platforms.linux;
};
}

View file

@ -25732,6 +25732,8 @@ with pkgs;
websocketpp = callPackage ../development/libraries/websocket++ { };
wfa2-lib = callPackage ../development/libraries/wfa2-lib { };
webrtc-audio-processing_1 = callPackage ../development/libraries/webrtc-audio-processing {
stdenv = gcc10StdenvCompat;
abseil-cpp = abseil-cpp.override {