ocamlPackages.eigen: init at 0.1.4
This commit is contained in:
parent
f436989403
commit
777efe8425
25
pkgs/development/ocaml-modules/eigen/default.nix
Normal file
25
pkgs/development/ocaml-modules/eigen/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, buildDunePackage, fetchFromGitHub, ctypes }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "eigen";
|
||||
version = "0.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "owlbarn";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0pbqd87i9h7qpx84hr8k4iw0rhmjgma4s3wihxh992jjvsrgdyfi";
|
||||
};
|
||||
|
||||
minimumOCamlVersion = "4.04";
|
||||
|
||||
propagatedBuildInputs = [ ctypes ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Minimal/incomplete Ocaml interface to Eigen3, mostly for Owl";
|
||||
platforms = platforms.x86_64;
|
||||
maintainers = [ maintainers.bcdarwin ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -235,6 +235,8 @@ let
|
||||
|
||||
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
||||
|
||||
eigen = callPackage ../development/ocaml-modules/eigen { };
|
||||
|
||||
elina = callPackage ../development/ocaml-modules/elina { };
|
||||
|
||||
eliom = callPackage ../development/ocaml-modules/eliom { };
|
||||
|
Loading…
Reference in New Issue
Block a user