mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
31 lines
724 B
Nix
31 lines
724 B
Nix
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||
|
|
||
|
buildGoPackage rec {
|
||
|
name = "cayley-${version}";
|
||
|
version = "0.6.1";
|
||
|
|
||
|
goPackagePath = "github.com/cayleygraph/cayley";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cayleygraph";
|
||
|
repo = "cayley";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "1r0kw3y32bqm7g37svzrch2qj9n45p93xmsrf7dj1cg4wwkb65ry";
|
||
|
};
|
||
|
|
||
|
goDeps = ./deps.nix;
|
||
|
|
||
|
buildFlagsArray = ''
|
||
|
-ldflags=
|
||
|
-X=main.Version=${version}
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://cayley.io/";
|
||
|
description = "A graph database inspired by Freebase and Knowledge Graph";
|
||
|
maintainers = with stdenv.lib.maintainers; [ sigma ];
|
||
|
license = stdenv.lib.licenses.asl20;
|
||
|
platforms = stdenv.lib.platforms.unix;
|
||
|
};
|
||
|
}
|