nixpkgs/pkgs/development/tools/spicy/default.nix

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

29 lines
731 B
Nix
Raw Normal View History

2022-10-17 03:15:25 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2021-02-20 19:42:37 +00:00
2022-10-17 03:15:25 +00:00
buildGoModule rec {
2021-02-20 19:42:37 +00:00
pname = "spicy";
2022-10-17 03:15:25 +00:00
version = "0.6.2";
2021-02-20 19:42:37 +00:00
src = fetchFromGitHub {
owner = "trhodeos";
repo = "spicy";
2022-10-17 03:15:25 +00:00
rev = "v${version}";
sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM=";
2021-02-20 19:42:37 +00:00
};
vendorHash = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE=";
2022-10-17 03:15:25 +00:00
ldflags = [ "-s" "-w" ];
2021-02-20 19:42:37 +00:00
meta = with lib; {
description = "A Nintendo 64 segment assembler";
longDescription = ''
An open-source version of the Nintendo64 sdk's mild.exe. Assembles
segments into an n64-compatible rom.
'';
homepage = "https://github.com/trhodeos/spicy";
license = licenses.mit;
2022-10-17 03:15:25 +00:00
maintainers = with maintainers; [ _414owen ];
2021-02-20 19:42:37 +00:00
};
}