mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 18:27:31 +00:00
20 lines
544 B
Nix
20 lines
544 B
Nix
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
|
{
|
|
description = "A Nix Flake for build-configs";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs = { nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
inherit (pkgs) mkShell;
|
|
in {
|
|
devShells.${system}.default =
|
|
mkShell { buildInputs = with pkgs; [ just php82 php82Packages.composer ]; };
|
|
|
|
formatter.${system} = pkgs.nixfmt;
|
|
};
|
|
}
|