Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

78 lines
1.6 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
nix-update-script,
runCommand,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "janet";
version = "1.39.1";
src = fetchFromGitHub {
owner = "janet-lang";
repo = "janet";
rev = "v${finalAttrs.version}";
hash = "sha256-Hd8DueT9f7vmK0QFJdRx7FgZ8BYh5prQyM++5Yb6tg4=";
};
postPatch = ''
substituteInPlace janet.1 \
--replace /usr/local/ $out/
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
# error: Socket is not connected
substituteInPlace meson.build \
--replace "'test/suite-ev.janet'," ""
'';
nativeBuildInputs = [
meson
ninja
];
mesonBuildType = "release";
mesonFlags = [ "-Dgit_hash=release" ];
doCheck = true;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/janet -e '(+ 1 2 3)'
'';
passthru = {
tests.run =
runCommand "janet-test-run"
{
nativeBuildInputs = [ finalAttrs.finalPackage ];
}
''
echo "(+ 1 2 3)" | janet | tail -n 1 > arithmeticTest.txt;
diff -U3 --color=auto <(cat arithmeticTest.txt) <(echo "6");
echo "(print \"Hello, World!\")" | janet | tail -n 2 > ioTest.txt;
diff -U3 --color=auto <(cat ioTest.txt) <(echo -e "Hello, World!\nnil");
touch $out;
'';
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Janet programming language";
mainProgram = "janet";
homepage = "https://janet-lang.org/";
license = licenses.mit;
maintainers = with maintainers; [
andrewchambers
peterhoeg
];
platforms = platforms.all;
};
})