nixpkgs/pkgs/tools/text/xurls/default.nix

25 lines
582 B
Nix
Raw Normal View History

2018-12-11 18:28:09 +00:00
{ buildGoPackage, stdenv, fetchFromGitHub }:
2015-07-14 08:25:35 +00:00
2018-12-11 18:28:09 +00:00
buildGoPackage rec {
version = "2.0.0";
pname = "xurls";
2015-07-14 08:25:35 +00:00
src = fetchFromGitHub {
owner = "mvdan";
repo = "xurls";
rev = "v${version}";
2018-12-11 18:28:09 +00:00
sha256 = "1jdjwlp19r8cb7vycyrjmpwf8dz2fzrqphq4lkvy9x2v7x0kksx8";
2015-07-14 08:25:35 +00:00
};
2018-12-11 18:28:09 +00:00
goPackagePath = "mvdan.cc/xurls/v2";
subPackages = [ "cmd/xurls" ];
2015-07-14 08:25:35 +00:00
meta = with stdenv.lib; {
description = "Extract urls from text";
homepage = https://github.com/mvdan/xurls;
2019-12-26 21:28:10 +00:00
maintainers = with maintainers; [ koral ];
platforms = platforms.unix;
2018-07-22 14:57:28 +00:00
license = licenses.bsd3;
2015-07-14 08:25:35 +00:00
};
}