python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / spicy / default.nix
blob65385d7fe139f594127ed4844873cc64eee20145
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "spicy";
5   version = "0.6.2";
7   src = fetchFromGitHub {
8     owner = "trhodeos";
9     repo = "spicy";
10     rev = "v${version}";
11     sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM=";
12   };
14   vendorSha256 = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE=";
16   ldflags = [ "-s" "-w" ];
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   };