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