sculpin-skeleton/flake.nix

25 lines
634 B
Nix
Raw Normal View History

# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
2024-05-10 21:55:51 +00:00
2024-06-27 11:17:09 +00:00
{
inputs = {
devshell.url = "github:numtide/devshell";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
2024-01-09 17:40:55 +00:00
2024-06-27 11:17:09 +00:00
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ inputs.devshell.flakeModule ];
2024-01-09 17:40:55 +00:00
2024-06-27 11:17:09 +00:00
systems = [ "x86_64-linux" ];
2024-01-09 17:40:55 +00:00
2024-06-27 11:17:09 +00:00
perSystem = { config, self', inputs', pkgs, system, ... }: {
devshells.default = {
packages = with pkgs; [
"php81"
"php81Packages.composer"
];
};
};
2024-01-09 17:40:55 +00:00
};
}