at 22.05-pre 22 lines 573 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "pup"; 5 version = "unstable-2019-09-19"; 6 7 src = fetchFromGitHub { 8 owner = "ericchiang"; 9 repo = "pup"; 10 rev = "681d7bb639334bf485476f5872c5bdab10931f9a"; 11 sha256 = "1hx1k0qlc1bq6gg5d4yprn4d7kvqzagg6mi5mvb39zdq6c4y17vr"; 12 }; 13 14 vendorSha256 = null; 15 16 meta = with lib; { 17 description = "Parsing HTML at the command line"; 18 homepage = "https://github.com/ericchiang/pup"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ yegortimoshenko SuperSandro2000 ]; 21 }; 22}