71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
python3,
|
|
which,
|
|
stdenv,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "erg";
|
|
version = "0.6.53";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "erg-lang";
|
|
repo = "erg";
|
|
rev = "v${version}";
|
|
hash = "sha256-VPekgbD5vQ6JsyGT4WKayl1eB9SWGemf02rXpkP6fcU=";
|
|
};
|
|
|
|
cargoHash = "sha256-xRav27+T8iy7MrqtzTf1Fvxqi2pwR9E7jv5bmXfC5Cs=";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
python3
|
|
which
|
|
];
|
|
|
|
buildFeatures = [ "full" ];
|
|
|
|
env = {
|
|
BUILD_DATE = "1970/01/01 00:00:00";
|
|
CASE_SENSITIVE = lib.boolToString (!stdenv.hostPlatform.isDarwin);
|
|
GIT_HASH_SHORT = src.rev;
|
|
};
|
|
|
|
# TODO(figsoda): fix tests
|
|
doCheck = false;
|
|
|
|
# the build script is impure and also assumes we are in a git repository
|
|
postPatch = ''
|
|
rm crates/erg_common/build.rs
|
|
'';
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)
|
|
export CARGO_ERG_PATH=$HOME/.erg
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
mv "$CARGO_ERG_PATH" $out/share/erg
|
|
|
|
wrapProgram $out/bin/erg \
|
|
--set-default ERG_PATH $out/share/erg
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Statically typed language that can deeply improve the Python ecosystem";
|
|
mainProgram = "erg";
|
|
homepage = "https://github.com/erg-lang/erg";
|
|
changelog = "https://github.com/erg-lang/erg/releases/tag/${src.rev}";
|
|
license = with licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|