goreman: 0.2.1 -> 0.3.9 (#157348)

This commit is contained in:
Aaron Jheng 2022-01-31 20:55:14 +08:00 committed by GitHub
parent 227d615749
commit 95fddccd89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,27 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "goreman";
version = "0.2.1";
{ lib, buildGoModule, fetchFromGitHub }:
goPackagePath = "github.com/mattn/goreman";
subPackages = ["."];
buildGoModule rec {
pname = "goreman";
version = "0.3.9";
rev = "df1209e7cdbad10aecc0aa75d332bc32822925f5";
src = fetchFromGitHub {
owner = "mattn";
repo = "goreman";
rev = "v${version}";
sha256 = "1h7ip788j7bkygahpp7ylgnrx9jrbhwjzqpjhd1pflmlaxcbflcy";
sha256 = "1irjf5i5ybdchyn42bamfq8pj3w00p633h1gg202n0vsr39h0bxw";
};
ldflags = [
"-s"
"-w"
"-X main.revision=${builtins.substring 0 7 rev}"
];
vendorSha256 = "sha256-+RFh6Ppxxs7P7DWqOBeEJTvPsBgOfopMjx22hPEI1/U=";
doCheck = false;
meta = with lib; {
description = "foreman clone written in go language";
homepage = "https://github.com/mattn/goreman";
@ -20,4 +29,3 @@ buildGoPackage rec {
maintainers = with maintainers; [ zimbatm ];
};
}