3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/interpreters/yex-lang/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
737 B
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub }:
2022-01-16 14:49:14 +00:00
rustPlatform.buildRustPackage rec {
pname = "yex-lang";
version = "unstable-2021-12-25";
src = fetchFromGitHub {
owner = "nonamescm";
2022-01-16 14:49:14 +00:00
repo = "yex-lang";
rev = "a97def1431b73b8693700f530ec023f1776eaf83";
hash = "sha256-CEzJtlEVMvMnRyUKdko1UDTluv8Fc88tfOpKGIFMnRw=";
2022-01-16 14:49:14 +00:00
};
cargoSha256 = "sha256-mHMenqcdt9Yjm/6H1Ywf637Sv8ddq6a4Eu2/A/jX9gQ=";
2022-01-16 14:49:14 +00:00
meta = with lib; {
homepage = "https://github.com/nonamesc/yex-lang";
2022-01-16 14:49:14 +00:00
description = "A cool functional scripting language written in rust";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
broken = stdenv.isAarch64 && stdenv.isLinux;
2022-01-16 14:49:14 +00:00
};
}