Merge pull request #119054 from siraben/passerine-init
passerine: init at 0.9.2
This commit is contained in:
commit
151ea58b76
2 changed files with 24 additions and 0 deletions
22
pkgs/development/compilers/passerine/default.nix
Normal file
22
pkgs/development/compilers/passerine/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11645,6 +11645,8 @@ in
|
||||||
|
|
||||||
open-watcom-bin = callPackage ../development/compilers/open-watcom-bin { };
|
open-watcom-bin = callPackage ../development/compilers/open-watcom-bin { };
|
||||||
|
|
||||||
|
passerine = callPackage ../development/compilers/passerine { };
|
||||||
|
|
||||||
pforth = callPackage ../development/compilers/pforth {};
|
pforth = callPackage ../development/compilers/pforth {};
|
||||||
|
|
||||||
picat = callPackage ../development/compilers/picat { };
|
picat = callPackage ../development/compilers/picat { };
|
||||||
|
|
Loading…
Reference in a new issue