wfa2-lib: init at 2.3.3
This commit is contained in:
committed by
Anderson Torres
parent
2785d92e77
commit
1367bd5d2a
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user