2021-02-12 04:14:17 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2016-06-03 12:13:10 +00:00
|
|
|
|
2021-02-12 04:14:17 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "pup";
|
2023-07-12 09:08:35 +00:00
|
|
|
version = "unstable-2022-03-06";
|
2017-12-19 23:48:53 +00:00
|
|
|
|
2021-02-12 04:14:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ericchiang";
|
|
|
|
repo = "pup";
|
2023-07-12 09:08:35 +00:00
|
|
|
rev = "5a57cf111366c7c08999a34b2afd7ba36d58a96d";
|
|
|
|
hash = "sha256-Ledg3xPbu71L5qUY033bru/lw03jws3s4YlAarIuqaA=";
|
2016-06-03 12:13:10 +00:00
|
|
|
};
|
2017-12-20 00:00:22 +00:00
|
|
|
|
2023-07-12 09:08:35 +00:00
|
|
|
vendorHash = "sha256-/MDSWIuSYNxKbTslqIooI2qKA8Pye0yJF2dY8g8qbWI=";
|
2021-02-12 04:14:17 +00:00
|
|
|
|
2017-12-20 00:00:22 +00:00
|
|
|
meta = with lib; {
|
2021-02-12 04:14:17 +00:00
|
|
|
description = "Parsing HTML at the command line";
|
|
|
|
homepage = "https://github.com/ericchiang/pup";
|
2017-12-20 00:00:22 +00:00
|
|
|
license = licenses.mit;
|
2023-07-23 17:30:22 +00:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2017-12-20 00:00:22 +00:00
|
|
|
};
|
2016-06-03 12:13:10 +00:00
|
|
|
}
|