nixpkgs/pkgs/servers/cayley/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
683 B
Nix
Raw Normal View History

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