Merge pull request #268106 from athas/smlfut

smlfut: init at 1.1.0
This commit is contained in:
Emily Trau 2023-12-01 14:24:56 +11:00 committed by GitHub
commit a20a3a13a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,36 @@
{ lib, stdenv, fetchFromGitHub, mlton, futhark }:
stdenv.mkDerivation rec {
pname = "smlfut";
version = "1.1.0";
src = fetchFromGitHub {
owner = "diku-dk";
repo = "smlfut";
rev = "v${version}";
hash = "sha256-Ta0nCVD8N1k88sCdN4RhcugBgkQE7NdclCUtubgS6HM=";
};
enableParallelBuilding = true;
nativeBuildInputs = [ mlton ];
env.MLCOMP = "mlton";
installFlags = ["PREFIX=$(out)"];
doCheck = true;
nativeCheckInputs = [ futhark ];
checkTarget = "run_test";
meta = with lib; {
description = "Allow SML programs to call Futhark programs";
homepage = "https://github.com/diku-dk/smlfut";
license = licenses.gpl3Plus;
platforms = mlton.meta.platforms;
maintainers = with maintainers; [ athas ];
mainProgram = "smlfut";
};
}