sculpin: init at 3.3.1 (#476433)

This commit is contained in:
Sandro
2026-08-25 23:04:51 +00:00
committed by GitHub
2 changed files with 36 additions and 0 deletions

View File

@@ -21702,6 +21702,12 @@
name = "Oops418";
githubId = 93655215;
};
opdavies = {
email = "oliver+github@oliverdavies.uk";
github = "opdavies";
githubId = 339813;
name = "Oliver Davies";
};
opeik = {
email = "sandro@stikic.com";
github = "opeik";

View File

@@ -0,0 +1,30 @@
{
fetchFromGitHub,
lib,
php,
}:
php.buildComposerProject2 rec {
__structuredAttrs = true;
pname = "sculpin";
version = "3.3.1";
src = fetchFromGitHub {
owner = "sculpin";
repo = "sculpin";
tag = version;
hash = "sha256-WoLqLe6UGzlDTRNpB75O2CT31EZkpHQZ6vPQIK/K/8Q=";
};
vendorHash = "sha256-y2W4GZNC7atxHkboNVWd2CWPDqWU2XIyWGC5Q47QqQs=";
meta = {
description = "PHP static site generator";
license = lib.licenses.mit;
homepage = "https://github.com/sculpin/sculpin";
maintainers = with lib.maintainers; [ opdavies ];
inherit (php.meta) platforms;
mainProgram = "sculpin";
};
}