depot/third_party/nixpkgs/pkgs/by-name/pg/pgraphs/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
746 B
Nix

{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "pgraphs";
version = "0.6.12";
src = fetchFromGitHub {
owner = "pg-format";
repo = "pgraphs";
rev = "refs/tags/v${version}";
hash = "sha256-rhNXASSHgdL9knq9uPFhAGlh0ZAKo5TNh/2a4u6Mh1U=";
};
npmDepsHash = "sha256-S1pCmRaRuprqIjaylIsuHyguhgQC5vvp7pDq2KJgrHQ=";
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 ];
};
}