ocamlPackages.owl: 0.7.2 -> 0.8.0
This commit is contained in:
parent
5fc6b34dba
commit
290b09847a
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
|
{ stdenv, buildDune2Package, fetchFromGitHub, stdlib-shims }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDune2Package rec {
|
||||||
pname = "owl-base";
|
pname = "owl-base";
|
||||||
version = "0.7.2";
|
version = "0.8.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "owlbarn";
|
owner = "owlbarn";
|
||||||
repo = "owl";
|
repo = "owl";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1a2lbhywrb3bmm4k48wwbp6iszpd3aj1f23v10i78cbqm5slk6dj";
|
sha256 = "1j3xmr4izfznmv8lbn8vkx9c77py2xr6fqyn6ypjlf5k9b8g4mmw";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ stdlib-shims ];
|
propagatedBuildInputs = [ stdlib-shims ];
|
||||||
|
@ -1,14 +1,26 @@
|
|||||||
{ stdenv, buildDunePackage, fetchFromGitHub, alcotest
|
{ stdenv
|
||||||
, eigen, stdio, stdlib-shims, openblasCompat, owl-base
|
, buildDune2Package
|
||||||
|
, dune-configurator
|
||||||
|
, fetchFromGitHub
|
||||||
|
, alcotest
|
||||||
|
, eigen
|
||||||
|
, stdio
|
||||||
|
, stdlib-shims
|
||||||
|
, openblasCompat
|
||||||
|
, owl-base
|
||||||
|
, npy
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDune2Package rec {
|
||||||
pname = "owl";
|
pname = "owl";
|
||||||
|
|
||||||
inherit (owl-base) version src meta;
|
inherit (owl-base) version src meta;
|
||||||
|
|
||||||
checkInputs = [ alcotest ];
|
checkInputs = [ alcotest ];
|
||||||
propagatedBuildInputs = [ eigen stdio stdlib-shims openblasCompat owl-base ];
|
buildInputs = [ dune-configurator ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
eigen stdio stdlib-shims openblasCompat owl-base npy
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = !stdenv.isDarwin; # https://github.com/owlbarn/owl/issues/462
|
doCheck = !stdenv.isDarwin; # https://github.com/owlbarn/owl/issues/462
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user