nixpkgs/pkgs/development/libraries/science/math/libtorch/test/default.nix

23 lines
312 B
Nix
Raw Normal View History

2020-08-27 16:42:38 +00:00
{ stdenv, cmake, libtorch-bin, symlinkJoin }:
stdenv.mkDerivation {
pname = "libtorch-test";
version = libtorch-bin.version;
src = ./.;
nativeBuildInputs = [ cmake ];
buildInputs = [ libtorch-bin ];
doCheck = true;
2020-08-27 16:42:38 +00:00
installPhase = ''
touch $out
'';
checkPhase = ''
./test
'';
}