nixpkgs/pkgs/development/tools/pup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
590 B
Nix
Raw Normal View History

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 {
pname = "pup";
version = "unstable-2022-03-06";
2021-02-12 04:14:17 +00:00
src = fetchFromGitHub {
owner = "ericchiang";
repo = "pup";
rev = "5a57cf111366c7c08999a34b2afd7ba36d58a96d";
hash = "sha256-Ledg3xPbu71L5qUY033bru/lw03jws3s4YlAarIuqaA=";
2016-06-03 12:13:10 +00:00
};
2017-12-20 00:00:22 +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
}