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