Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 28 lines 714 B view raw
1{ lib 2, stdenv 3, rustPlatform 4, fetchFromGitHub 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "yex-lang"; 9 version = "0.pre+date=2022-05-10"; 10 11 src = fetchFromGitHub { 12 owner = "nonamescm"; 13 repo = "yex-lang"; 14 rev = "866c4decbb9340f5af687b145e2c4f47fcbee786"; 15 hash = "sha256-sxzkZ2Rhn3HvZIfjnJ6Z2au/l/jV5705ecs/X3Iah6k="; 16 }; 17 18 cargoSha256 = "sha256-nX5FoPAk50wt0CXskyg7jQeHvD5YtBNnCe0CVOGXTMI="; 19 20 meta = with lib; { 21 homepage = "https://github.com/nonamescm/yex-lang"; 22 description = "A functional scripting language written in rust"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ AndersonTorres ]; 25 mainProgram = "yex"; 26 platforms = platforms.unix; 27 }; 28}