about summary refs log tree commit diff
path: root/pkgs/development/interpreters/yex-lang/default.nix
blob: 87ffb0df0700ea7886f2856e25462fdb5dd8062d (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, 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;
  };
}