summary refs log tree commit diff
path: root/pkgs/development/interpreters/yex-lang/default.nix
blob: 738b73d8e4c8cc40c6c562f43cd2808531ba6d50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "yex-lang";
  version = "unstable-2021-12-25";

  src = fetchFromGitHub {
    owner = "nonamescm";
    repo = "yex-lang";
    rev = "a97def1431b73b8693700f530ec023f1776eaf83";
    hash = "sha256-CEzJtlEVMvMnRyUKdko1UDTluv8Fc88tfOpKGIFMnRw=";
  };

  cargoSha256 = "sha256-mHMenqcdt9Yjm/6H1Ywf637Sv8ddq6a4Eu2/A/jX9gQ=";

  meta = with lib; {
    homepage = "https://github.com/nonamesc/yex-lang";
    description = "A cool functional scripting language written in rust";
    license = licenses.mit;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
    broken = stdenv.isAarch64 && stdenv.isLinux;
  };
}