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

23 lines
573 B
Nix
Raw Normal View History

2021-02-12 07:14:17 +03:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-06-03 15:13:10 +03:00
2021-02-12 07:14:17 +03:00
buildGoModule rec {
pname = "pup";
2021-02-12 07:14:17 +03:00
version = "unstable-2019-09-19";
2021-02-12 07:14:17 +03:00
src = fetchFromGitHub {
owner = "ericchiang";
repo = "pup";
rev = "681d7bb639334bf485476f5872c5bdab10931f9a";
sha256 = "1hx1k0qlc1bq6gg5d4yprn4d7kvqzagg6mi5mvb39zdq6c4y17vr";
2016-06-03 15:13:10 +03:00
};
2017-12-20 03:00:22 +03:00
2021-02-12 07:14:17 +03:00
vendorSha256 = null;
2017-12-20 03:00:22 +03:00
meta = with lib; {
2021-02-12 07:14:17 +03:00
description = "Parsing HTML at the command line";
homepage = "https://github.com/ericchiang/pup";
2017-12-20 03:00:22 +03:00
license = licenses.mit;
2021-02-12 07:14:17 +03:00
maintainers = with maintainers; [ yegortimoshenko SuperSandro2000 ];
2017-12-20 03:00:22 +03:00
};
2016-06-03 15:13:10 +03:00
}