mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
b426c85ce2
This requires some small changes in the stdenv, then working around the weird choice LLVM made to hardcode @rpath in its install name, and then lets us remove a ton of annoying workaround hacks in many of our Go packages. With any luck this will mean less hackery going forward.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "dgraph-${version}";
|
|
version = "0.8.2";
|
|
|
|
goPackagePath = "github.com/dgraph-io/dgraph";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dgraph-io";
|
|
repo = "dgraph";
|
|
rev = "v${version}";
|
|
sha256 = "0zc5bda8m2srjbk0gy1nnm0bya8if0kmk1szqr1qv3xifdzmi4nf";
|
|
};
|
|
|
|
extraOutputsToInstall = [ "dashboard" ];
|
|
|
|
goDeps = ./deps.nix;
|
|
subPackages = [ "cmd/dgraph" "cmd/dgraphloader" "cmd/bulkloader"];
|
|
|
|
# let's move the dashboard to a different output, to prevent $bin from
|
|
# depending on $out
|
|
# TODO: provide a proper npm application for the dashboard.
|
|
postPatch = ''
|
|
mv dashboard/* $dashboard
|
|
'';
|
|
|
|
preBuild = ''
|
|
export buildFlagsArray="-ldflags=\
|
|
-X github.com/dgraph-io/dgraph/x.dgraphVersion=${version} \
|
|
-X github.com/dgraph-io/dgraph/cmd/dgraph/main.uiDir=$dashboard/src/assets/"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://dgraph.io/";
|
|
description = "Fast, Distributed Graph DB";
|
|
maintainers = with stdenv.lib.maintainers; [ sigma ];
|
|
license = stdenv.lib.licenses.agpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|