Merge pull request #187607 from ehllie/ante

This commit is contained in:
Sandro 2022-09-15 12:15:14 +02:00 committed by GitHub
commit b66d3b3fcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 0 deletions

View file

@ -3745,6 +3745,12 @@
github = "edlimerkaj";
githubId = 71988351;
};
ehllie = {
email = "me@ehllie.xyz";
github = "ehllie";
githubId = 20847625;
name = "Elizabeth Paź";
};
elliottslaughter = {
name = "Elliott Slaughter";
email = "elliottslaughter@gmail.com";

View file

@ -0,0 +1,53 @@
{ fetchFromGitHub
, lib
, libffi
, libxml2
, llvmPackages_13
, ncurses
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "ante";
version = "unstable-2022-08-22";
src = fetchFromGitHub {
owner = "jfecher";
repo = "ante";
rev = "8b708d549c213c34e4ca62d31cf0dd25bfa7b548";
sha256 = "sha256-s8nDuG32lI4pBLsOzgfyUGpc7/r0j4EhzH54ErBK7A0=";
};
cargoSha256 = "sha256-29D7kPG7vop9lIxWQnaHkCTRY8YsCjERRCOvbU7oemQ=";
/*
https://crates.io/crates/llvm-sys#llvm-compatibility
llvm-sys requires a specific version of llvmPackages,
that is not the same as the one included by default with rustPlatform.
*/
nativeBuildInputs = [ llvmPackages_13.llvm ];
buildInputs = [ libffi libxml2 ncurses ];
postPatch = ''
substituteInPlace tests/golden_tests.rs --replace \
'target/debug' "target/$(rustc -vV | sed -n 's|host: ||p')/release"
'';
preBuild =
let
major = lib.versions.major llvmPackages_13.llvm.version;
minor = lib.versions.minor llvmPackages_13.llvm.version;
llvm-sys-ver = "${major}${builtins.substring 0 1 minor}";
in
''
# On some architectures llvm-sys is not using the package listed inside nativeBuildInputs
export LLVM_SYS_${llvm-sys-ver}_PREFIX=${llvmPackages_13.llvm.dev}
export ANTE_STDLIB_DIR=$out/lib
mkdir -p $ANTE_STDLIB_DIR
cp -r $src/stdlib/* $ANTE_STDLIB_DIR
'';
meta = with lib; {
homepage = "https://antelang.org/";
description = "A low-level functional language for exploring refinement types, lifetime inference, and algebraic effects";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ehllie ];
};
}

View file

@ -13067,6 +13067,8 @@ with pkgs;
algol68g = callPackage ../development/compilers/algol68g { };
ante = callPackage ../development/compilers/ante { };
armips = callPackage ../development/compilers/armips {
stdenv = gcc10Stdenv;
};