passerine: init at 0.9.2

This commit is contained in:
Ben Siraphob 2021-04-10 21:19:15 +07:00
parent a2aac2f9ac
commit 766e933d9c
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "passerine";
version = "0.9.2";
src = fetchFromGitHub {
owner = "vrtbl";
repo = "passerine";
rev = "dd8a6f5efc5dcb03d45b102f61cc8a50d46e8e98";
sha256 = "sha256-/QzqKLkxAVqvTY4Uft1qk7nJat6nozykB/4X1YGqu/I=";
};
cargoSha256 = "sha256-8WiiDLIJ/abXELF8S+4s+BPA/Lr/rpKmC1NWPCLzQWA=";
meta = with lib; {
description = "A small extensible programming language designed for concise expression with little code";
homepage = "https://github.com/vrtbl/passerine";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
};
}

View file

@ -11584,6 +11584,8 @@ in
open-watcom-bin = callPackage ../development/compilers/open-watcom-bin { };
passerine = callPackage ../development/compilers/passerine { };
pforth = callPackage ../development/compilers/pforth {};
picat = callPackage ../development/compilers/picat { };