Add sculpin shell
This commit is contained in:
parent
3572510177
commit
322e71d74f
1 changed files with 27 additions and 0 deletions
27
modules/sculpin.nix
Normal file
27
modules/sculpin.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
perSystem =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
devShells.sculpin = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
(php.buildComposerProject2 {
|
||||
pname = "sculpin";
|
||||
version = "3.3.0-dev";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sculpin";
|
||||
repo = "sculpin";
|
||||
rev = "03af6498c32663e3d307ebfe346bb8d48feddec5";
|
||||
hash = "sha256-K3wyXRiOIlkfy8Kx8pvIzne+N2XNTxZYyDlunfpQsL8=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-b5+Jj8YUy5QzZ/VG0YN58vkknFLYwn97pfrvUGmA+Dc=";
|
||||
})
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
sculpin --version
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue