f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
31 lines
722 B
Nix
31 lines
722 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;
|
|
};
|
|
}
|