Merge pull request #251573 from r-ryantm/auto-update/url-parser

url-parser: 1.0.4 -> 1.0.5
This commit is contained in:
Matthias Beyer 2023-08-26 20:19:43 +02:00 committed by GitHub
commit 30d06bc78b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,16 +5,16 @@
buildGoModule rec {
pname = "url-parser";
version = "1.0.4";
version = "1.0.5";
src = fetchFromGitHub {
owner = "thegeeklab";
repo = "url-parser";
rev = "v${version}";
hash = "sha256-rOL6merwQ6CQkdsYGOpFttkJIy2EXCKMGIbAqqmYdvM=";
rev = "refs/tags/v${version}";
hash = "sha256-A+uoxwPdWdy12Avl2Ci+zd9TFmQFA22pMbsxtWpNPpc=";
};
vendorHash = "sha256-ZaZlIGk44eX0ER2sdLdSvN2qdKVyEPsXjfCuJzJGspE=";
vendorHash = "sha256-8doDVHyhQKsBeN1H73KV/rxhpumDLIzjahdjtW79Bek=";
ldflags = [
"-s"
@ -26,6 +26,7 @@ buildGoModule rec {
meta = with lib; {
description = "Simple command-line URL parser";
homepage = "https://github.com/thegeeklab/url-parser";
changelog = "https://github.com/thegeeklab/url-parser/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};