Created
January 5, 2016 15:19
-
-
Save charles-cooper/0bd4398f223e64ba52f6 to your computer and use it in GitHub Desktop.
ta-lib nix file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, gettext, attr }: | |
stdenv.mkDerivation rec { | |
version = "0.4.0"; | |
name = "ta-lib-${version}"; | |
src = fetchurl { | |
url = "http://prdownloads.sourceforge.net/ta-lib/${name}-src.tar.gz"; | |
sha256 = "0lf69nna0aahwpgd9m9yjzbv2fbfn081djfznssa84f0n7y1xx4z"; | |
}; | |
nativeBuildInputs = [ gettext ]; | |
buildInputs = [ attr ]; | |
meta = { | |
homepage = http://ta-lib.org/index.html; | |
description = "Multi-Platform Tools for Stock Market Analysis"; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment