Create a sculpin dev shell

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-23 22:03:13 +01:00
parent ef6faa57ea
commit a98d4ff909
5 changed files with 13 additions and 45 deletions

15
sculpin.nix Normal file
View file

@ -0,0 +1,15 @@
{ fetchFromGitHub, php }:
php.buildComposerProject2 {
pname = "sculpin";
version = "3.3.0-dev";
src = fetchFromGitHub {
owner = "sculpin";
repo = "sculpin";
rev = "03af6498c32663e3d307ebfe346bb8d48feddec5";
hash = "sha256-K3wyXRiOIlkfy8Kx8pvIzne+N2XNTxZYyDlunfpQsL8=";
};
vendorHash = "sha256-OGRUkpItPJMCMd/0NGPgP45TlA32kVGEVmY1khrzTg8=";
}