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

View file

@ -12,6 +12,7 @@
buildNpmPackage
fetchFromGitHub
mkShell
php
;
in
{
@ -23,6 +24,10 @@
openapi-mock = import ./openapi-mock.nix {
inherit buildGoModule fetchFromGitHub;
};
sculpin = import ./sculpin.nix {
inherit fetchFromGitHub php;
};
};
devShells.${system} = with pkgs; {
@ -45,6 +50,12 @@
self.packages.${system}.openapi-mock
];
};
sculpin = mkShell {
packages = [
self.packages.${system}.sculpin
];
};
};
};
}