about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/dec-decode/default.nix
blob: 621e119dc0908da51316ae2c1d201531a3fb965d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "dec-decode";
  version = "unstable-2022-12-24";

  src = fetchFromGitHub {
    owner = "sammiq";
    repo = pname;
    rev = "6ee103c";
    hash = "sha256-vOYKVl00oaXwp77pRLqUPnXQT5QuJfqnGGkQVBMq5W0=";
  };

  vendorHash = "sha256-zGWRzw1KUmifIsTudlgoKCR3+K0FLehHRSB3lNX+OWY=";

  meta = with lib; {
    description = "Nintendo Wii iso.dec decoder";
    mainProgram = "dec-decode";
    homepage = "https://github.com/sammiq/dec-decode";
    license = licenses.unlicense;
    maintainers = with maintainers; [ hughobrien ];
    platforms = with platforms; linux ++ darwin;
  };
}