Advance process-compose-flake

This commit is contained in:
Sridhar Ratnakumar 2023-06-19 18:01:04 -04:00
parent f171932d13
commit 599970cd8f
3 changed files with 23 additions and 4 deletions

View File

@ -6,6 +6,8 @@ NixOS-like services for Nix flakes, as a [process-compose-flake](https://github.
TODO
(But see `./test/flake.nix`)
## Services available
- [x] Hello World

View File

@ -54,11 +54,11 @@
},
"process-compose-flake": {
"locked": {
"lastModified": 1687194805,
"narHash": "sha256-DAqMJFWXft+eWrPOLWrP4xdK1DQELWkkU47PM+ODG2U=",
"lastModified": 1687211949,
"narHash": "sha256-PKZhjtrLkN1+AuWiv+m+n0tL5xcrjwXRdAR6pS+UwxI=",
"owner": "Platonic-Systems",
"repo": "process-compose-flake",
"rev": "dd1dff00700deb2bc4afa44e7082c0176c095fd9",
"rev": "1483bd7fecd59254d8531b6c3202f3f765b22468",
"type": "github"
},
"original": {
@ -72,9 +72,25 @@
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs",
"process-compose-flake": "process-compose-flake",
"services-flake": "services-flake",
"systems": "systems"
}
},
"services-flake": {
"locked": {
"lastModified": 1687211778,
"narHash": "sha256-eBO71ucbGhNX7095CsFDm+sQ/HuTJSy03S3MevWVuZw=",
"owner": "juspay",
"repo": "services-flake",
"rev": "f171932d130c3ce5184b69144012a225b2e28868",
"type": "github"
},
"original": {
"owner": "juspay",
"repo": "services-flake",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,

View File

@ -4,6 +4,7 @@
flake-parts.url = "github:hercules-ci/flake-parts";
systems.url = "github:nix-systems/default";
process-compose-flake.url = "github:Platonic-Systems/process-compose-flake";
services-flake.url = "github:juspay/services-flake";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
@ -15,7 +16,7 @@
process-compose = {
postgres = {
imports = [
inputs.process-compose-flake.processComposeModules.services
inputs.services-flake.processComposeModules.default
../nix/postgres_test.nix
];
};