mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
f0e64ce16f
Manual migration for the sake of by-name migration is no longer discouraged since #340235.
28 lines
701 B
Nix
28 lines
701 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "yex-lang";
|
|
version = "0.pre+date=2022-05-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nonamescm";
|
|
repo = "yex-lang";
|
|
rev = "866c4decbb9340f5af687b145e2c4f47fcbee786";
|
|
hash = "sha256-sxzkZ2Rhn3HvZIfjnJ6Z2au/l/jV5705ecs/X3Iah6k=";
|
|
};
|
|
|
|
cargoHash = "sha256-nX5FoPAk50wt0CXskyg7jQeHvD5YtBNnCe0CVOGXTMI=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/nonamescm/yex-lang";
|
|
description = "Functional scripting language written in rust";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
mainProgram = "yex";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|