Merge pull request #119054 from siraben/passerine-init

passerine: init at 0.9.2
This commit is contained in:
Sandro 2021-06-05 16:56:17 +02:00 committed by GitHub
commit 151ea58b76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -11645,6 +11645,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 { };