jelly: init at 0.1.31 (#82178)
This commit is contained in:
parent
f5704b97d2
commit
7493a7eb91
28
pkgs/development/interpreters/jelly/default.nix
Normal file
28
pkgs/development/interpreters/jelly/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, python3Packages, fetchFromGitHub }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication {
|
||||||
|
pname = "jelly";
|
||||||
|
version = "0.1.31";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "DennisMitchell";
|
||||||
|
repo = "jellylanguage";
|
||||||
|
rev = "70c9fd93ab009c05dc396f8cc091f72b212fb188";
|
||||||
|
sha256 = "1rpclqagvigp5qhvgnjavvy463f1drshnc1mfxm6z7ygzs0l0yz6";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ python3Packages.sympy ];
|
||||||
|
|
||||||
|
# checks are disabled because jelly has no tests, and the default is to run
|
||||||
|
# the output binary with no arguments, which exits with status 1 and causes
|
||||||
|
# the build to fail
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A recreational programming language inspired by J";
|
||||||
|
homepage = https://github.com/DennisMitchell/jellylanguage;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.tckmn ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -9358,6 +9358,8 @@ in
|
|||||||
|
|
||||||
janet = callPackage ../development/interpreters/janet {};
|
janet = callPackage ../development/interpreters/janet {};
|
||||||
|
|
||||||
|
jelly = callPackage ../development/interpreters/jelly {};
|
||||||
|
|
||||||
jimtcl = callPackage ../development/interpreters/jimtcl {};
|
jimtcl = callPackage ../development/interpreters/jimtcl {};
|
||||||
|
|
||||||
jmeter = callPackage ../applications/networking/jmeter {};
|
jmeter = callPackage ../applications/networking/jmeter {};
|
||||||
|
Loading…
Reference in New Issue
Block a user