minify: 2.12.7 -> 2.12.8
This commit is contained in:
parent
dd1ec9047a
commit
26e8499f22
2 changed files with 4 additions and 17 deletions
|
@ -9,18 +9,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "minify";
|
pname = "minify";
|
||||||
version = "2.12.7";
|
version = "2.12.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tdewolff";
|
owner = "tdewolff";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-V3lFM58ciU9RrIp5s+ZMaCUAfRJxbTuQxusXhLCiGmI=";
|
hash = "sha256-5p1HWXx9kKKaiC0dTQDd1JpRDhKkDGdnDpuz+I0kgpo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./update-go-version-mod.patch ];
|
vendorHash = "sha256-RBBCcqahIF1KjnK/Kxr0TZlRJirFffo9Dt40gNk5EQE=";
|
||||||
|
|
||||||
vendorHash = "sha256-v3ZPaeE1YW9BRXHxGsmN8tHv3ApOY+NivfePctOmYlM=";
|
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
@ -47,5 +45,6 @@ buildGoModule rec {
|
||||||
downloadPage = "https://github.com/tdewolff/minify";
|
downloadPage = "https://github.com/tdewolff/minify";
|
||||||
changelog = "https://github.com/tdewolff/minify/releases/tag/v${version}";
|
changelog = "https://github.com/tdewolff/minify/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ gaelreyrol ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
diff --git a/go.mod b/go.mod
|
|
||||||
index cebe363..f9ae9c8 100644
|
|
||||||
--- a/go.mod
|
|
||||||
+++ b/go.mod
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
module github.com/tdewolff/minify/v2
|
|
||||||
|
|
||||||
-go 1.13
|
|
||||||
+go 1.18
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927 // indirect
|
|
Loading…
Reference in a new issue