Compare commits
4 Commits
4d64c425c1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| a669ec1818 | |||
| f02bfec2c0 | |||
| 5071000a6c | |||
| 22148060e4 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -12,3 +12,5 @@ keys
|
|||||||
!web/modules
|
!web/modules
|
||||||
web/modules/*
|
web/modules/*
|
||||||
!web/modules/custom
|
!web/modules/custom
|
||||||
|
|
||||||
|
.direnv/
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
"drupal/smtp": "^1.2",
|
"drupal/smtp": "^1.2",
|
||||||
"drupal/health_check_url": "^3.2",
|
"drupal/health_check_url": "^3.2",
|
||||||
"drupal/oauth_login_oauth2": "^3.0",
|
"drupal/oauth_login_oauth2": "^3.0",
|
||||||
"drupal/simple_oauth_password_grant": "^1.0@RC",
|
"drupal/simple_oauth_password_grant": "^2.0",
|
||||||
"drupal/farm_map_custom_layers": "^1.2",
|
"drupal/farm_map_custom_layers": "^1.2",
|
||||||
"drupal/farm_eggs": "^2.2",
|
"drupal/farm_eggs": "^2.2",
|
||||||
"drupal/graphql": "^4.7"
|
"drupal/graphql": "^4.7"
|
||||||
|
|||||||
1771
composer.lock
generated
1771
composer.lock
generated
File diff suppressed because it is too large
Load Diff
27
flake.lock
generated
Normal file
27
flake.lock
generated
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1737062831,
|
||||||
|
"narHash": "sha256-Tbk1MZbtV2s5aG+iM99U8FqwxU/YNArMcWAv6clcsBc=",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "5df43628fdf08d642be8ba5b3625a6c70731c19c",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nixos",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
||||||
17
flake.nix
Normal file
17
flake.nix
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs }:
|
||||||
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
in {
|
||||||
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
php84Packages.composer
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user