nickel: mark as broken on aarch64-linux, cleanup (#386758)

This commit is contained in:
Gaétan Lepage
2025-03-04 08:27:27 +01:00
committed by GitHub
+28 -15
View File
@@ -3,17 +3,18 @@
rustPlatform,
fetchFromGitHub,
python3,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nickel";
version = "1.10.0";
src = fetchFromGitHub {
owner = "tweag";
repo = "nickel";
tag = version;
tag = finalAttrs.version;
hash = "sha256-CnEGC4SnLRfAPl3WTv83xertH2ulG5onseZpq3vxfwc=";
};
@@ -41,16 +42,10 @@ rustPlatform.buildRustPackage rec {
# dependency with that name, but that dependency uses the "dep:" syntax in
# the features table, so it does not have an implicit feature with that name.
preBuild = ''
sed -i 's/dep:comrak/comrak/' core/Cargo.toml
substituteInPlace core/Cargo.toml \
--replace-fail "dep:comrak" "comrak"
'';
postInstall = ''
mkdir -p $nls/bin
mv $out/bin/nls $nls/bin/nls
'';
passthru.updateScript = nix-update-script { };
checkFlags = [
# https://github.com/tweag/nickel/blob/1.10.0/git/tests/main.rs#L60
# fails because src is not a git repo
@@ -58,7 +53,20 @@ rustPlatform.buildRustPackage rec {
"--skip=fetch_targets"
];
meta = with lib; {
postInstall = ''
mkdir -p $nls/bin
mv $out/bin/nls $nls/bin/nls
'';
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://nickel-lang.org/";
description = "Better configuration for less";
longDescription = ''
@@ -69,12 +77,17 @@ rustPlatform.buildRustPackage rec {
that are then fed to another system. It is designed to have a simple,
well-understood core: it is in essence JSON with functions.
'';
changelog = "https://github.com/tweag/nickel/blob/${version}/RELEASES.md";
license = licenses.mit;
maintainers = with maintainers; [
changelog = "https://github.com/tweag/nickel/blob/${finalAttrs.version}/RELEASES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
felschr
matthiasbeyer
];
mainProgram = "nickel";
badPlatforms = [
# collect2: error: ld returned 1 exit status
# undefined reference to `PyExc_TypeError'
"aarch64-linux"
];
};
}
})