From b755af85fc17d0962934019db35488fb6b56dbb1 Mon Sep 17 00:00:00 2001 From: Mateus DCC <68336493+Mateus-Cavalcanti@users.noreply.github.com> Date: Sun, 16 Jan 2022 11:49:14 -0300 Subject: yex-lang: init at unstable-2021-12-25 --- pkgs/development/interpreters/yex-lang/default.nix | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pkgs/development/interpreters/yex-lang/default.nix (limited to 'pkgs/development/interpreters/yex-lang') diff --git a/pkgs/development/interpreters/yex-lang/default.nix b/pkgs/development/interpreters/yex-lang/default.nix new file mode 100644 index 000000000000..87ffb0df0700 --- /dev/null +++ b/pkgs/development/interpreters/yex-lang/default.nix @@ -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; + }; +} -- cgit 1.4.1