depot/third_party/nixpkgs/pkgs/development/tools/pup/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

22 lines
590 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pup";
version = "unstable-2022-03-06";
src = fetchFromGitHub {
owner = "ericchiang";
repo = "pup";
rev = "5a57cf111366c7c08999a34b2afd7ba36d58a96d";
hash = "sha256-Ledg3xPbu71L5qUY033bru/lw03jws3s4YlAarIuqaA=";
};
vendorHash = "sha256-/MDSWIuSYNxKbTslqIooI2qKA8Pye0yJF2dY8g8qbWI=";
meta = with lib; {
description = "Parsing HTML at the command line";
homepage = "https://github.com/ericchiang/pup";
license = licenses.mit;
maintainers = with maintainers; [ yana ];
};
}