3
0
Fork 0
forked from mirrors/nixpkgs

nfpm: 2.14.0 -> 2.15.0

This commit is contained in:
techknowlogick 2022-03-18 23:24:36 -04:00
parent 6b12167277
commit c0a92a1ce9

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "nfpm";
version = "2.14.0";
version = "2.15.0";
src = fetchFromGitHub {
owner = "goreleaser";
repo = pname;
rev = "v${version}";
sha256 = "sha256-KZeamXMhTX8CbPR66f4ij29GsIvzSbDUZtla+EXPRG4=";
sha256 = "sha256-z9jGivdO7LduJuHbyKr4sl8xg+FGVvKwCm+RgVQPxJQ=";
};
vendorSha256 = "sha256-j4ebzVOzlmQwSkP8epDGClT7fhSUtC6uWdcoo+tFbnc=";
vendorSha256 = "sha256-guJgLjmB29sOLIzs2+gKNp0WTWC3zS9Sb5DD5IistKY=";
doCheck = false;
@ -20,7 +20,7 @@ buildGoModule rec {
meta = with lib; {
description = "A simple deb and rpm packager written in Go";
homepage = "https://github.com/goreleaser/nfpm";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
maintainers = with maintainers; [ marsam techknowlogick ];
license = with licenses; [ mit ];
};
}