Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "modd"; 5 version = "unstable-2021-12-15"; 6 7 src = fetchFromGitHub { 8 owner = "cortesi"; 9 repo = "modd"; 10 rev = "6083f9d1c171bd3292945672dab654a70d205945"; 11 sha256 = "sha256-KDZyOnytDLyybHTgU1v/NpiomeHXMIUHiQ+Xpmwyo0w="; 12 }; 13 14 vendorSha256 = "sha256-O+hJRMSwV/9NHxbaLjloCWnfPugfRYaXNve098wjbqQ="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 description = "A flexible developer tool that runs processes and responds to filesystem changes"; 20 homepage = "https://github.com/cortesi/modd"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ kierdavis ]; 23 }; 24}