1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "dec-decode";
8 version = "unstable-2022-12-24";
9
10 src = fetchFromGitHub {
11 owner = "sammiq";
12 repo = pname;
13 rev = "6ee103c";
14 hash = "sha256-vOYKVl00oaXwp77pRLqUPnXQT5QuJfqnGGkQVBMq5W0=";
15 };
16
17 vendorHash = "sha256-zGWRzw1KUmifIsTudlgoKCR3+K0FLehHRSB3lNX+OWY=";
18
19 meta = with lib; {
20 description = "Nintendo Wii iso.dec decoder";
21 homepage = "https://github.com/sammiq/dec-decode";
22 license = licenses.unlicense;
23 maintainers = with maintainers; [ hughobrien ];
24 platforms = with platforms; linux ++ darwin;
25 };
26}