mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
b9d66aa852
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com> Co-authored-by: Aleksana <alexander.huang.y@gmail.com> Co-authored-by: h7x4 <h7x4@nani.wtf> Co-authored-by: seth <getchoo@tuta.io>
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
testers,
|
|
geo,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "geo";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MetaCubeX";
|
|
repo = "geo";
|
|
rev = "v${version}";
|
|
hash = "sha256-lwFBevf3iP90LgnfUqweCjPBJPr2vMFtRqQXXUC+cRA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace constant.go \
|
|
--replace-fail 'Version = "0.1"' 'Version = "${version}"'
|
|
'';
|
|
|
|
vendorHash = "sha256-FXvuojlMZRzi8TIQ2aPiDH7F9c+2dpe4PYzYWljfUIc=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = geo;
|
|
command = "${lib.getExe geo} --help";
|
|
version = "v${version}";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Easy way to manage all your Geo resources";
|
|
homepage = "https://github.com/MetaCubeX/geo";
|
|
changelog = "https://github.com/MetaCubeX/geo/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ oluceps ];
|
|
mainProgram = "geo";
|
|
};
|
|
}
|