mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
Merge pull request #332816 from ofalvai/bitrise-init
bitrise: init at 2.19.0
This commit is contained in:
commit
c76514f608
@ -15222,6 +15222,12 @@
|
||||
githubId = 7397786;
|
||||
name = "Odysseas Georgoudis";
|
||||
};
|
||||
ofalvai = {
|
||||
email = "ofalvai@gmail.com";
|
||||
github = "ofalvai";
|
||||
githubId = 1694986;
|
||||
name = "Olivér Falvai";
|
||||
};
|
||||
ofek = {
|
||||
email = "oss@ofek.dev";
|
||||
github = "ofek";
|
||||
|
39
pkgs/by-name/bi/bitrise/package.nix
Normal file
39
pkgs/by-name/bi/bitrise/package.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "bitrise";
|
||||
version = "2.19.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bitrise-io";
|
||||
repo = "bitrise";
|
||||
rev = version;
|
||||
hash = "sha256-VjuDeRl/rqA7bdhn9REdxdjRon5WxHkFIveOYNpQqa8=";
|
||||
};
|
||||
|
||||
# many tests rely on writable $HOME/.bitrise and require network access
|
||||
doCheck = false;
|
||||
|
||||
vendorHash = null;
|
||||
ldflags = [
|
||||
"-X github.com/bitrise-io/bitrise/version.Commit=${src.rev}"
|
||||
"-X github.com/bitrise-io/bitrise/version.BuildNumber=0"
|
||||
];
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/bitrise-io/bitrise/releases";
|
||||
description = "CLI for running your Workflows from Bitrise on your local machine";
|
||||
homepage = "https://bitrise.io/cli";
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.unix;
|
||||
mainProgram = "bitrise";
|
||||
maintainers = with lib.maintainers; [ ofalvai ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user