forked from mirrors/nixpkgs
passerine: init at 0.9.2
This commit is contained in:
parent
a2aac2f9ac
commit
766e933d9c
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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue