Skip to content

Instantly share code, notes, and snippets.

@charles-cooper
Created January 5, 2016 15:19
Show Gist options
  • Save charles-cooper/0bd4398f223e64ba52f6 to your computer and use it in GitHub Desktop.
Save charles-cooper/0bd4398f223e64ba52f6 to your computer and use it in GitHub Desktop.
ta-lib nix file
{ 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