Merge pull request #189968 from zuzuleinen/init-bob

bob: init at 0.5.3
This commit is contained in:
Jonas Heinrich 2022-09-16 10:53:18 +02:00 committed by GitHub
commit edca65a4b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 0 deletions

View File

@ -15365,4 +15365,10 @@
githubId = 115711;
name = "bpaulin";
};
zuzuleinen = {
email = "andrey.boar@gmail.com";
name = "Andrei Boar";
github = "zuzuleinen";
githubId = 944919;
};
}

View File

@ -0,0 +1,30 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "bob";
version = "0.5.3";
src = fetchFromGitHub {
owner = "benchkram";
repo = pname;
rev = version;
hash = "sha256-JG1fysCqqd/MwpNhKJwLr4cTGq4/88f9OMMapb+r3bc=";
};
ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
vendorHash = "sha256-R+zXGR5isoo76oc4lsFf9uCM0Kyi8dQiKEg4BUxtv+k=";
excludedPackages = [ "example/server-db" "test/e2e" "tui-example" ];
# tests require network access
doCheck = false;
meta = with lib; {
description = "A build system for microservices";
homepage = "https://bob.build";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ zuzuleinen ];
};
}

View File

@ -15986,6 +15986,8 @@ with pkgs;
wxGTK = wxGTK30;
};
bob = callPackage ../development/tools/build-managers/bob { };
buck = callPackage ../development/tools/build-managers/buck { };
build2 = callPackage ../development/tools/build-managers/build2 {