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

25 lines
584 B
Nix
Raw Normal View History

2018-12-11 19:28:09 +01:00
{ buildGoPackage, stdenv, fetchFromGitHub }:
2015-07-14 10:25:35 +02:00
2018-12-11 19:28:09 +01:00
buildGoPackage rec {
2020-05-19 06:54:27 +02:00
version = "2.2.0";
pname = "xurls";
2015-07-14 10:25:35 +02:00
src = fetchFromGitHub {
owner = "mvdan";
repo = "xurls";
rev = "v${version}";
2020-05-19 06:54:27 +02:00
sha256 = "0w7i1yfl5q24wvmsfb3fz1zcqsdh4c6qikjnmswxbjc7wva8rngg";
2015-07-14 10:25:35 +02:00
};
2018-12-11 19:28:09 +01:00
goPackagePath = "mvdan.cc/xurls/v2";
subPackages = [ "cmd/xurls" ];
2015-07-14 10:25:35 +02:00
meta = with stdenv.lib; {
description = "Extract urls from text";
homepage = "https://github.com/mvdan/xurls";
2019-12-26 22:28:10 +01:00
maintainers = with maintainers; [ koral ];
platforms = platforms.unix;
2018-07-22 16:57:28 +02:00
license = licenses.bsd3;
2015-07-14 10:25:35 +02:00
};
}