about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/dec-decode/default.nix
blob: 2d85f41e33abdf49174fe683dc2dc60142b1f907 (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
{ 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";
    homepage = "https://github.com/sammiq/dec-decode";
    license = licenses.unlicense;
    maintainers = with maintainers; [ hughobrien ];
    platforms = with platforms; linux ++ darwin;
  };
}