mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-08 16:15:03 +00:00
build(deps): update composer.lock
This commit is contained in:
parent
f911d52573
commit
ae6155dc39
776
composer.lock
generated
776
composer.lock
generated
File diff suppressed because it is too large
Load diff
25
flake.nix
25
flake.nix
|
@ -1,15 +1,30 @@
|
||||||
{
|
{
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
|
||||||
|
|
||||||
outputs = inputs@{ flake-parts, ... }:
|
outputs = inputs@{ flake-parts, ... }:
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
systems = [ "x86_64-linux" ];
|
systems = [ "x86_64-linux" ];
|
||||||
|
|
||||||
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
||||||
devShells = {
|
devShells.default = pkgs.mkShell {
|
||||||
default = pkgs.mkShell {
|
buildInputs = with pkgs; [ php82 php82Packages.composer ];
|
||||||
buildInputs = with pkgs; [ php82 php82Packages.composer ];
|
};
|
||||||
};
|
|
||||||
|
packages.default = pkgs.stdenv.mkDerivation {
|
||||||
|
name = "build-configs2";
|
||||||
|
src = ".";
|
||||||
|
|
||||||
|
# buildPhase = ''
|
||||||
|
# echo "build"
|
||||||
|
# ls
|
||||||
|
# '';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
touch $out
|
||||||
|
# mkdir $out
|
||||||
|
# cp bin vendor $out
|
||||||
|
# ls "$out"
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue