Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 27 lines 654 B view raw
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 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 }; 27}