Merge pull request #206363 from rafa-dot-el/feature/add-ta-lib

This commit is contained in:
Norbert Melzer 2022-12-19 23:04:16 +01:00 committed by GitHub
commit 8a0118837c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View File

@ -11530,6 +11530,15 @@
githubId = 131856;
name = "Arnout Engelen";
};
rafael = {
name = "Rafael";
email = "pr9@tuta.io";
github = "rafa-dot-el";
githubId = 104688305;
keys = [{
fingerprint = "5F0B 3EAC F1F9 8155 0946 CDF5 469E 3255 A40D 2AD6";
}];
};
RaghavSood = {
email = "r@raghavsood.com";
github = "RaghavSood";

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
name = "ta-lib";
version = "0.4.0";
src = fetchFromGitHub {
owner = "rafa-dot-el";
repo = "talib";
rev = "${version}";
sha256 = "sha256-bIzN8f9ZiOLaVzGAXcZUHUh/v9z1U+zY+MnyjJr1lSw=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
hardeningDisable = [ "format" ];
meta = with lib; {
description =
"TA-Lib is a library that provides common functions for the technical analysis of financial market data.";
homepage = "https://ta-lib.org/";
license = lib.licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ rafael ];
};
}

View File

@ -22897,6 +22897,8 @@ with pkgs;
tageditor = libsForQt5.callPackage ../applications/audio/tageditor { };
ta-lib = callPackage ../development/libraries/ta-lib { };
taglib = callPackage ../development/libraries/taglib { };
taglib_extras = callPackage ../development/libraries/taglib-extras { };