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

25 lines
582 B
Nix
Raw Normal View History

{ buildGoPackage, lib, stdenv, fetchFromGitHub }:
2015-07-14 08:25:35 +00:00
2018-12-11 18:28:09 +00:00
buildGoPackage rec {
2020-05-19 04:54:27 +00:00
version = "2.2.0";
pname = "xurls";
2015-07-14 08:25:35 +00:00
src = fetchFromGitHub {
owner = "mvdan";
repo = "xurls";
rev = "v${version}";
2020-05-19 04:54:27 +00:00
sha256 = "0w7i1yfl5q24wvmsfb3fz1zcqsdh4c6qikjnmswxbjc7wva8rngg";
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 lib; {
2015-07-14 08:25:35 +00:00
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
};
}