mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
geo: init at 1.1
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>
This commit is contained in:
parent
87878822b1
commit
b9d66aa852
50
pkgs/by-name/ge/geo/package.nix
Normal file
50
pkgs/by-name/ge/geo/package.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user