
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
cmdliner,
|
|
ctypes,
|
|
ctypes-foreign,
|
|
dune-configurator,
|
|
npy,
|
|
ocaml-compiler-libs,
|
|
ppx_custom_printf,
|
|
ppx_expect,
|
|
ppx_sexp_conv,
|
|
sexplib,
|
|
stdio,
|
|
torch,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "torch";
|
|
version = "0.17";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LaurentMazare";
|
|
repo = "ocaml-${pname}";
|
|
rev = version;
|
|
hash = "sha256-z/9NUBjeFWE63Z/e8OyzDiy8hrn6qzjaiBH8G9MPeos=";
|
|
};
|
|
|
|
patches = [
|
|
# Pytorch 2.0 support. Drop when it reaches a release
|
|
(fetchpatch {
|
|
url = "https://github.com/LaurentMazare/ocaml-torch/commit/ef7ef30cafecb09e45ec1ed8ce4bedae5947cfa5.patch";
|
|
hash = "sha256-smdwKy40iIISp/25L2J4az6KmqFS1soeChBElUyhl5A=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [
|
|
cmdliner
|
|
ctypes
|
|
ctypes-foreign
|
|
npy
|
|
ocaml-compiler-libs
|
|
ppx_custom_printf
|
|
ppx_expect
|
|
ppx_sexp_conv
|
|
sexplib
|
|
stdio
|
|
torch
|
|
torch.dev
|
|
];
|
|
|
|
preBuild = "export LIBTORCH=${torch.dev}/";
|
|
|
|
doCheck = !stdenv.hostPlatform.isAarch64;
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Ocaml bindings to Pytorch";
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
license = licenses.asl20;
|
|
broken = true; # Not compatible with libtorch ≥ 2.3.0
|
|
};
|
|
}
|