2020-05-23 02:45:46 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
|
|
|
, clang, chez
|
|
|
|
}:
|
|
|
|
|
|
|
|
# Uses scheme to bootstrap the build of idris2
|
2020-05-26 23:34:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-23 02:45:46 +01:00
|
|
|
name = "idris2";
|
2020-08-17 03:37:08 +01:00
|
|
|
version = "0.2.1";
|
2020-05-23 02:45:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "idris-lang";
|
|
|
|
repo = "Idris2";
|
2020-05-26 23:34:10 +01:00
|
|
|
rev = "v${version}";
|
2020-08-17 03:37:08 +01:00
|
|
|
sha256 = "044slgl2pwvj939kz3z92n6l182plc5fzng1n4z4k6bg11msqq14";
|
2020-05-23 02:45:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper clang chez ];
|
|
|
|
buildInputs = [ chez ];
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
patchShebangs --build tests
|
|
|
|
'';
|
|
|
|
|
2020-06-07 23:06:35 +01:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin "OS=";
|
2020-05-23 02:45:46 +01:00
|
|
|
|
|
|
|
# The name of the main executable of pkgs.chez is `scheme`
|
2020-05-26 23:34:10 +01:00
|
|
|
buildFlags = [ "bootstrap-build" "SCHEME=scheme" ];
|
|
|
|
|
|
|
|
checkTarget = "bootstrap-test";
|
2020-05-23 02:45:46 +01:00
|
|
|
|
|
|
|
# idris2 needs to find scheme at runtime to compile
|
|
|
|
postInstall = ''
|
2020-05-26 23:34:10 +01:00
|
|
|
wrapProgram "$out/bin/idris2" --set CHEZ "${chez}/bin/scheme"
|
2020-05-23 02:45:46 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A purely functional programming language with first class types";
|
2020-06-07 23:06:35 +01:00
|
|
|
homepage = "https://github.com/idris-lang/Idris2";
|
2020-05-23 02:45:46 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ wchresta ];
|
2020-06-07 23:06:35 +01:00
|
|
|
inherit (chez.meta) platforms;
|
2020-05-23 02:45:46 +01:00
|
|
|
};
|
|
|
|
}
|