minify: 2.10.0 -> 2.11.1

* Enable tests
This commit is contained in:
superherointj 2022-04-17 12:14:43 -03:00
parent 34b15bb835
commit 165b53247f

View file

@ -2,18 +2,16 @@
buildGoModule rec { buildGoModule rec {
pname = "minify"; pname = "minify";
version = "2.10.0"; version = "2.11.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tdewolff"; owner = "tdewolff";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-4wF9bRLrGQftw54b+HrsoJOGsTRTNYVDEMsKsFqnHGY="; sha256 = "sha256-qna2u+Y4eRGLNvRKDbL/VQud1pn8b1wWzbKQM1p0Yws=";
}; };
vendorSha256 = "sha256-4aoDQKMhczy1u4Eq567aMrFVIBW2L8OgNCqsgmUN6CI="; vendorSha256 = "sha256-stj3fOaPM70kF6vTX/DEs4qFq/O0Vq0TFw0J/3L5NmA=";
doCheck = false;
ldflags = [ "-s" "-w" "-X main.Version=${version}" ]; ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
@ -21,5 +19,6 @@ buildGoModule rec {
description = "Minifiers for web formats"; description = "Minifiers for web formats";
license = licenses.mit; license = licenses.mit;
homepage = "https://go.tacodewolff.nl/minify"; homepage = "https://go.tacodewolff.nl/minify";
downloadPage = "https://github.com/tdewolff/minify";
}; };
} }