Merge pull request #319789 from luftmensch-luftmensch/pgraphs_0.6.12

pgraphs: init at 0.6.12
This commit is contained in:
Aleksana 2024-06-18 23:03:49 +08:00 committed by GitHub
commit ccc02ec301
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,29 @@
{
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 ];
};
}