ta-lib: init at 0.4.0

This commit is contained in:
Rafael 2022-12-16 16:54:49 +01:00
parent 754f831250
commit d1eca0bf6c
No known key found for this signature in database
GPG Key ID: 469E3255A40D2AD6
2 changed files with 27 additions and 0 deletions

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

@ -22851,6 +22851,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 { };