nixpkgs/pkgs/by-name/pg/pgraphs/package.nix
2024-08-22 14:02:47 +02:00

30 lines
746 B
Nix

{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "pgraphs";
version = "0.6.17";
src = fetchFromGitHub {
owner = "pg-format";
repo = "pgraphs";
rev = "refs/tags/v${version}";
hash = "sha256-0Zo8Vg2KHhEGvO+vrbcP0ZTnfLtNTE2fqxq5LwPsJGs=";
};
npmDepsHash = "sha256-47zT3wlCnVIcv0Sst4lUWLUMiWftgvP60cOmHu65vB8=";
dontNpmBuild = true;
meta = {
description = "Property Graph Exchange Format (PG) converter";
changelog = "https://github.com/pg-format/pgraphs/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/pg-format/pgraphs";
license = lib.licenses.mit;
mainProgram = "pgraphs";
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
};
}