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