Merge pull request #23300 from ndowens/xurls

xurls: 0.8.0 -> 1.1.0
This commit is contained in:
Peter Hoeg 2017-03-01 08:43:42 +08:00 committed by GitHub
commit 9a2b23427f

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, go }: { stdenv, fetchFromGitHub, go }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.8.0"; version = "1.1.0";
name = "xurls-${version}"; name = "xurls-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mvdan"; owner = "mvdan";
repo = "xurls"; repo = "xurls";
rev = "v${version}"; rev = "v${version}";
sha256 = "0j35x6hl5hiwzpi6vjw9d2sn83rrsd9w07ql9kndhkngz8n6yr98"; sha256 = "05q4nqbpgfb0a35sn22rn9mlag2ks4cgwb54dx925hipp6zgj1hx";
}; };
buildInputs = [ go ]; buildInputs = [ go ];
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Extract urls from text"; description = "Extract urls from text";
homepage = https://github.com/mvdan/xurls; homepage = https://github.com/mvdan/xurls;
maintainers = [ maintainers.koral ]; maintainers = with maintainers; [ koral ndowens ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }