Skip to content

Commit

Permalink
adding shell.nix file so nixos can install composer for users and you…
Browse files Browse the repository at this point in the history
… do not have to have it installed on your system
  • Loading branch information
curtismchale committed Jul 18, 2024
1 parent 62d7d59 commit 3e34a05
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in

pkgs.mkShellNoCC {
packages = with pkgs; [
php82
php82Packages.composer
];
}

0 comments on commit 3e34a05

Please sign in to comment.