commit
edca65a4b8
@ -15365,4 +15365,10 @@
|
||||
githubId = 115711;
|
||||
name = "bpaulin";
|
||||
};
|
||||
zuzuleinen = {
|
||||
email = "andrey.boar@gmail.com";
|
||||
name = "Andrei Boar";
|
||||
github = "zuzuleinen";
|
||||
githubId = 944919;
|
||||
};
|
||||
}
|
||||
|
30
pkgs/development/tools/build-managers/bob/default.nix
Normal file
30
pkgs/development/tools/build-managers/bob/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user