3
0
Fork 0
forked from mirrors/nixpkgs

janet: 1.22.0 -> 1.23.0

This commit is contained in:
Payas Relekar 2022-07-04 16:20:58 +05:30
parent aac9ff65da
commit 5da31db744

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "janet";
version = "1.22.0";
version = "1.23.0";
src = fetchFromGitHub {
owner = "janet-lang";
repo = pname;
rev = "v${version}";
sha256 = "sha256-FOs8ZfO61A1amovLy4EDSZiZ6XlwVNXf1TiPvNo6BnQ=";
sha256 = "sha256-FQZ9I9ROC1gWGfMCxsNMN3g/arenRtC6LHsOIAKGyuE=";
};
# This release fails the test suite on darwin, remove when debugged.
@ -26,6 +26,12 @@ stdenv.mkDerivation rec {
doCheck = true;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/janet --help
'';
meta = with lib; {
description = "Janet programming language";
homepage = "https://janet-lang.org/";