nixpkgs/pkgs/by-name/pr/prox/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
824 B
Nix
Raw Normal View History

2023-10-17 11:39:18 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "prox";
2024-07-16 11:07:52 +00:00
# While upstream did release a v1.0.0, v1.1.0 is actually newer: https://github.com/fgrosse/prox/releases/tag/v1.1.0
version = "1.1.0";
2023-10-17 11:39:18 +00:00
src = fetchFromGitHub {
owner = "fgrosse";
repo = pname;
rev = "v${version}";
hash = "sha256-KSHTlcAmnuU8F17N0LBS0s5b/k6Of0OEHVd3v50bH3g=";
2023-10-17 11:39:18 +00:00
};
2024-07-16 11:07:52 +00:00
vendorHash = "sha256-i4QJ84Tne1E8s2Fprd5xeWlTQBIb/9tvwws80yHXhbg=";
2023-10-17 11:39:18 +00:00
postPatch = ''
substituteInPlace cmd/prox/version.go \
--replace '0.0.0-unknown' '${version}'
'';
meta = with lib; {
homepage = "https://github.com/fgrosse/prox";
description = "Process runner for Procfile-based applications";
mainProgram = "prox";
2023-10-17 11:39:18 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ lucperkins ];
};
}