Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2buildGoModule rec { 3 pname = "run"; 4 version = "0.11.2"; 5 6 src = fetchFromGitHub { 7 owner = "TekWizely"; 8 repo = "run"; 9 rev = "v${version}"; 10 sha256 = "sha256-an5AuRJJEM18IssdLLZC/zzPpsVCCtawRQXK/AfzMN0="; 11 }; 12 13 vendorHash = "sha256-BAyhuE9hGGDfDGmXQ7dseUvHlK5vC87uLT78lHSvLeg="; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "Easily manage and invoke small scripts and wrappers"; 19 homepage = "https://github.com/TekWizely/run"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ rawkode Br1ght0ne ]; 22 platforms = platforms.unix; 23 }; 24}