Merge pull request #178199 from aaronjheng/mongo-tools

mongodb-tools: use buildGoModule
main
Jörg Thalheim 2 years ago committed by GitHub
commit 2ea4d37217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 66
      pkgs/tools/misc/mongodb-tools/default.nix

@ -1,58 +1,50 @@
{ lib
, buildGoPackage
, fetchFromGitHub
, openssl
, pkg-config
, libpcap
}:
let
tools = [
"bsondump"
"mongoimport"
"mongoexport"
"mongodump"
"mongorestore"
"mongostat"
"mongofiles"
"mongotop"
];
version = "100.5.3";
{ lib, buildGoModule, fetchFromGitHub, openssl, pkg-config, libpcap }:
in buildGoPackage {
buildGoModule rec {
pname = "mongo-tools";
inherit version;
goPackagePath = "github.com/mongodb/mongo-tools";
subPackages = tools;
version = "100.5.3";
src = fetchFromGitHub {
rev = version;
owner = "mongodb";
repo = "mongo-tools";
rev = version;
sha256 = "sha256-8RkpBCFVxKVsu4h2z+rhlwvYfbSDHZUg8erO4+2GRbw=";
};
vendorSha256 = null;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl libpcap ];
# Mongodb incorrectly names all of their binaries main
# Let's work around this with our own installer
buildPhase = ''
# move vendored codes so nixpkgs go builder could find it
runHook preBuild
${lib.concatMapStrings (t: ''
go build -o "$out/bin/${t}" -tags ssl -ldflags "-s -w" $goPackagePath/${t}/main
'') tools}
runHook postBuild
'';
buildPhase =
let
tools = [
"bsondump"
"mongodump"
"mongoexport"
"mongofiles"
"mongoimport"
"mongorestore"
"mongostat"
"mongotop"
]; in
''
# move vendored codes so nixpkgs go builder could find it
runHook preBuild
${lib.concatMapStrings (t: ''
go build -o "$out/bin/${t}" -tags ssl -ldflags "-s -w" ./${t}/main
'') tools}
runHook postBuild
'';
meta = {
homepage = "https://github.com/mongodb/mongo-tools";
description = "Tools for the MongoDB";
maintainers = with lib.maintainers; [ bryanasdev000 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bryanasdev000 ];
};
}

Loading…
Cancel
Save