19 lines
350 B
Nix
19 lines
350 B
Nix
{
|
|
fetchurl,
|
|
php,
|
|
}:
|
|
php.buildComposerProject2 (finalAttrs: rec {
|
|
pname = "think-gtcm";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.b4l.co.th/newedge/think-greaterchiangmai";
|
|
sha256 = "";
|
|
};
|
|
|
|
composerLock = "${src}/think.greaterchiangmai.com/composer.lock";
|
|
composerStrictValidation = false;
|
|
vendorHash = "";
|
|
|
|
})
|