nixpkgs/pkgs/servers/dgraph/default.nix

41 lines
974 B
Nix
Raw Normal View History

2020-06-06 11:38:45 +00:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2017-07-21 15:45:03 +00:00
2020-06-06 11:38:45 +00:00
buildGoModule rec {
pname = "dgraph";
2020-07-24 17:43:36 +00:00
version = "20.03.4";
2017-07-21 15:45:03 +00:00
src = fetchFromGitHub {
owner = "dgraph-io";
repo = "dgraph";
rev = "v${version}";
2020-07-24 17:43:36 +00:00
sha256 = "1i098wimzwna62q4wp8ipx8qjrmhrdv48kklm1jdi2sfiz18c9sc";
2017-07-21 15:45:03 +00:00
};
2020-07-24 17:43:36 +00:00
vendorSha256 = "0n442nsa2whwb22dl0cjxspl8dc00rqv29zivcw9liwdzara81bw";
2020-06-06 11:38:45 +00:00
nativeBuildInputs = [ installShellFiles ];
2019-09-01 02:15:52 +00:00
# see licensing
2020-06-06 11:38:45 +00:00
buildPhase = ''
make oss BUILD_VERSION=${version}
'';
2017-07-21 15:45:03 +00:00
2020-06-06 11:38:45 +00:00
installPhase = ''
install dgraph/dgraph -Dt $out/bin
2017-07-21 15:45:03 +00:00
2020-06-06 11:38:45 +00:00
for shell in bash zsh; do
$out/bin/dgraph completion $shell > dgraph.$shell
installShellCompletion dgraph.$shell
done
2017-07-21 15:45:03 +00:00
'';
2020-06-06 11:38:45 +00:00
meta = with lib; {
2017-07-21 15:45:03 +00:00
homepage = "https://dgraph.io/";
description = "Fast, Distributed Graph DB";
2020-06-06 11:38:45 +00:00
maintainers = with maintainers; [ sigma ];
# Apache 2.0 because we use only build "oss"
license = licenses.asl20;
platforms = platforms.unix;
2017-07-21 15:45:03 +00:00
};
}