Commit bea8a14b authored by Francesco Gazzetta's avatar Francesco Gazzetta
Browse files

tclPackages.vectcl: init at 0.3

parent 146fe2ed
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  lib,
  mkTclDerivation,
  fetchFromGitHub,
}:

mkTclDerivation rec {
  pname = "vectcl";
  version = "0.3";

  src = fetchFromGitHub {
    owner = "auriocus";
    repo = "VecTcl";
    tag = "v${version}";
    hash = "sha256-nPs16Jy6KMEdupWJNhgYqosuW5Dlpb/dxxTrLpRbYf0=";
  };

  makeFlags = [
    "CFLAGS=-Wno-implicit-function-declaration"
  ];

  meta = {
    homepage = "https://auriocus.github.io/VecTcl/";
    description = "Numeric array and linear algebra extension for Tcl";
    maintainers = with lib.maintainers; [ fgaz ];
    license = lib.licenses.tcltk;
  };
}