nixpkgs/pkgs/tools/package-management/smlpkg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.0 KiB
Nix
Raw Normal View History

2021-02-09 19:04:57 +00:00
{ lib, stdenv, fetchFromGitHub, mlton, unzip }:
stdenv.mkDerivation rec {
pname = "smlpkg";
version = "0.1.5";
src = fetchFromGitHub {
owner = "diku-dk";
repo = "smlpkg";
rev = "v${version}";
sha256 = "1xmbdnfc34ia0a78dhkfv5jyadxndinhw8c47l1mjd4l7n8vqnph";
};
enableParallelBuilding = true;
nativeBuildInputs = [ mlton ];
# Set as an environment variable in all the phase scripts.
MLCOMP = "mlton";
buildFlags = ["all"];
installFlags = ["prefix=$(out)"];
doCheck = true;
nativeCheckInputs = [ unzip ];
2021-02-09 19:04:57 +00:00
# We cannot run the pkgtests, as Nix does not allow network
# connections.
checkPhase = ''
runHook preCheck
make -C src test
runHook postCheck
'';
meta = with lib; {
description = "Generic package manager for Standard ML libraries and programs";
homepage = "https://github.com/diku-dk/smlpkg";
license = licenses.mit;
2022-07-09 04:20:00 +00:00
platforms = mlton.meta.platforms;
2021-02-09 19:04:57 +00:00
maintainers = with maintainers; [ athas ];
2023-11-27 01:17:53 +00:00
mainProgram = "smlpkg";
2021-02-09 19:04:57 +00:00
};
}