lol
at 23.11-beta 28 lines 731 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "spicy"; 5 version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "trhodeos"; 9 repo = "spicy"; 10 rev = "v${version}"; 11 sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM="; 12 }; 13 14 vendorHash = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 description = "A Nintendo 64 segment assembler"; 20 longDescription = '' 21 An open-source version of the Nintendo64 sdk's mild.exe. Assembles 22 segments into an n64-compatible rom. 23 ''; 24 homepage = "https://github.com/trhodeos/spicy"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ _414owen ]; 27 }; 28}