mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
yex-lang: init at unstable-2021-12-25
This commit is contained in:
parent
6dbbf99120
commit
b755af85fc
24
pkgs/development/interpreters/yex-lang/default.nix
Normal file
24
pkgs/development/interpreters/yex-lang/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "yex-lang";
|
||||
version = "unstable-2021-12-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nonamesc";
|
||||
repo = "yex-lang";
|
||||
rev = "a97def1431b73b8693700f530ec023f1776eaf83";
|
||||
sha256 = "074x9j0ihjpaghnwywq5zyxfad2h6m57c2i58wkz6chma6vcjk08";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
cargoSha256 = "017nszw07gzd2awadasxqyzx4zpb3y6db1zykcixddqxlyg1wwwq";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A cool functional scripting language written in rust";
|
||||
homepage = "https://github.com/yex-lang/yex-lang";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -13874,6 +13874,7 @@ with pkgs;
|
||||
|
||||
wasm3 = callPackage ../development/interpreters/wasm3 { };
|
||||
|
||||
yex-lang = callPackage ../development/interpreters/yex-lang { };
|
||||
|
||||
### DEVELOPMENT / MISC
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user