Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule { 8 pname = "pup"; 9 version = "unstable-2022-03-06"; 10 11 src = fetchFromGitHub { 12 owner = "ericchiang"; 13 repo = "pup"; 14 rev = "5a57cf111366c7c08999a34b2afd7ba36d58a96d"; 15 hash = "sha256-Ledg3xPbu71L5qUY033bru/lw03jws3s4YlAarIuqaA="; 16 }; 17 18 vendorHash = "sha256-/MDSWIuSYNxKbTslqIooI2qKA8Pye0yJF2dY8g8qbWI="; 19 20 meta = with lib; { 21 description = "Parsing HTML at the command line"; 22 mainProgram = "pup"; 23 homepage = "https://github.com/ericchiang/pup"; 24 license = licenses.mit; 25 maintainers = [ ]; 26 }; 27}