pup: add meta

This commit is contained in:
Yegor Timoshenko 2017-12-20 00:00:22 +00:00
parent 102f8a8907
commit c8adf82928
No known key found for this signature in database
GPG key ID: C34BF9DCC9DF8210

View file

@ -1,4 +1,4 @@
{ buildGoPackage, fetchgit }:
{ lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "pup-${version}";
@ -12,4 +12,10 @@ buildGoPackage rec {
url = "https://${goPackagePath}";
sha256 = "0mnhw0yph5fvcnrcmj1kfbyw1a4lcg3k9f6y28kf44ihlq8h1dfz";
};
meta = with lib; {
description = "Streaming HTML processor/selector";
license = licenses.mit;
maintainers = with maintainers; [ yegortimoshenko ];
};
}