2021-01-15 07:07:56 +00:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-04-13 15:10:39 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cayley";
|
2019-09-01 01:33:57 +00:00
|
|
|
version = "0.7.5";
|
2017-04-13 15:10:39 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/cayleygraph/cayley";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cayleygraph";
|
|
|
|
repo = "cayley";
|
|
|
|
rev = "v${version}";
|
2019-09-01 01:33:57 +00:00
|
|
|
sha256 = "1zfxa9z6spi6xw028mvbc7c3g517gn82g77ywr6picl47fr2blnd";
|
2017-04-13 15:10:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-X=main.Version=${version}
|
|
|
|
'';
|
2020-07-31 04:07:43 +00:00
|
|
|
|
2017-04-13 15:10:39 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://cayley.io/";
|
2017-04-13 15:10:39 +00:00
|
|
|
description = "A graph database inspired by Freebase and Knowledge Graph";
|
2021-01-15 07:07:56 +00:00
|
|
|
maintainers = with lib.maintainers; [ sigma ];
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
platforms = lib.platforms.unix;
|
2017-04-13 15:10:39 +00:00
|
|
|
};
|
|
|
|
}
|