-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathflake.nix
45 lines (40 loc) · 1.25 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
description = "A Nix-flake-based PHP development environment";
# GitHub URLs for the Nix inputs we're using
inputs = {
# Simply the greatest package repository on the planet
nixpkgs.url = "github:NixOS/nixpkgs";
# A set of helper functions for using flakes
flake-utils.url = "github:numtide/flake-utils";
php-shell.url = "github:loophp/nix-shell";
};
outputs = { self, nixpkgs, flake-utils, php-shell }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
php = (php-shell.api.makePhp system {
php = "php81";
withExtensions = [ "pcov" "xdebug" ];
withoutExtensions = [ "sodium" ];
extraConfig = ''
memory_limit=-1
'';
flags = {
apxs2Support = false;
ztsSupport = false;
};
});
phpTools = with php.packages; [ composer ];
in {
devShells = {
default = pkgs.mkShell {
# Packages included in the environment
buildInputs = [ php ] ++ phpTools;
# Run when the shell is started up
shellHook = ''
${php}/bin/php --version
'';
};
};
});
}