nixpkgs/pkgs/servers/cayley/default.nix

30 lines
664 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2017-04-13 16:10:39 +01:00
buildGoPackage rec {
pname = "cayley";
2019-09-01 02:33:57 +01:00
version = "0.7.5";
2017-04-13 16:10:39 +01:00
goPackagePath = "github.com/cayleygraph/cayley";
src = fetchFromGitHub {
owner = "cayleygraph";
repo = "cayley";
rev = "v${version}";
2019-09-01 02:33:57 +01:00
sha256 = "1zfxa9z6spi6xw028mvbc7c3g517gn82g77ywr6picl47fr2blnd";
2017-04-13 16:10:39 +01:00
};
goDeps = ./deps.nix;
2021-08-26 04:31:57 +01:00
ldflags = [
"-X=main.Version=${version}"
];
2017-04-13 16:10:39 +01:00
meta = {
homepage = "https://cayley.io/";
2017-04-13 16:10:39 +01: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 16:10:39 +01:00
};
}