Compare commits

..

2 Commits

Author SHA1 Message Date
Quixos Subtree Publisher 3856553d71 Publish camino-package-runtime from ebf8fe2843731ad538caabac1e2780fe240d35d7 2026-07-12 20:12:42 +00:00
Timothy J. Aveni dd839fde20 Pin Camino package runtime infrastructure inputs 2026-07-12 13:12:42 -07:00
3 changed files with 24 additions and 17 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"version": 1, "version": 1,
"sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git", "sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git",
"sourceCommit": "eb407e5a3bbd4ae2f810a0cee0d45b5c7e8d7db1", "sourceCommit": "ebf8fe2843731ad538caabac1e2780fe240d35d7",
"sourcePath": "quixos-instance/packages/camino-package-runtime", "sourcePath": "quixos-instance/packages/camino-package-runtime",
"exportName": "camino-package-runtime", "exportName": "camino-package-runtime",
"mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/camino-package-runtime.git" "mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/camino-package-runtime.git"
Generated
+19 -12
View File
@@ -74,28 +74,35 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"path": "../../../quixos-protocol", "lastModified": 1783886666,
"type": "path" "narHash": "sha256-B+WyKSrCS/3rjCN7opGjpkAxWDqB5A9K/ISKYxFeRyo=",
"ref": "refs/heads/exported",
"rev": "a8dc34db0ed32e74cee9859d7a9fbaa699cb0f4c",
"revCount": 2,
"type": "git",
"url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-protocol.git"
}, },
"original": { "original": {
"path": "../../../quixos-protocol", "ref": "refs/heads/exported",
"type": "path" "rev": "a8dc34db0ed32e74cee9859d7a9fbaa699cb0f4c",
}, "type": "git",
"parent": [] "url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-protocol.git"
}
}, },
"quixosNixHelpers": { "quixosNixHelpers": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1783884081, "lastModified": 1783886666,
"narHash": "sha256-cxM6C4VDTu0uV3Vymz/ZTkTdk+K5RMzpmz6WQWYgCbg=", "narHash": "sha256-y52TlYwH9RBzzyhpkY/eB21t85BE84idpsg8618MIHg=",
"ref": "refs/heads/master", "ref": "refs/heads/exported",
"rev": "8dde1f6b82197e5c508ad4260e258ffecc7828a9", "rev": "81e55657d9ce0ba092cffd69ee15179ea02aa598",
"revCount": 4, "revCount": 2,
"type": "git", "type": "git",
"url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git" "url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git"
}, },
"original": { "original": {
"rev": "8dde1f6b82197e5c508ad4260e258ffecc7828a9", "ref": "refs/heads/exported",
"rev": "81e55657d9ce0ba092cffd69ee15179ea02aa598",
"type": "git", "type": "git",
"url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git" "url": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git"
} }
+4 -4
View File
@@ -4,9 +4,9 @@
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
quixos-protocol.url = "path:../../../quixos-protocol"; quixos-protocol.url = "git+https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-protocol.git?ref=refs/heads/exported&rev=a8dc34db0ed32e74cee9859d7a9fbaa699cb0f4c";
quixosNixHelpers = { quixosNixHelpers = {
url = "git+https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git?rev=8dde1f6b82197e5c508ad4260e258ffecc7828a9"; url = "git+https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-nix-helpers.git?ref=refs/heads/exported&rev=81e55657d9ce0ba092cffd69ee15179ea02aa598";
flake = false; flake = false;
}; };
}; };
@@ -29,8 +29,8 @@
devShellPackages = { pkgs, ... }: [ devShellPackages = { pkgs, ... }: [
pkgs.protobuf pkgs.protobuf
]; ];
devShellHook = { pkgs, ... }: '' devShellHook = { inputs, pkgs, system, ... }: ''
export QUIXOS_PROTO_PATH="${pkgs.protobuf}/include:$PWD/../../../quixos-protocol/proto''${QUIXOS_PROTO_PATH:+:$QUIXOS_PROTO_PATH}" export QUIXOS_PROTO_PATH="${pkgs.protobuf}/include:${inputs.quixos-protocol.packages.${system}.default}/proto''${QUIXOS_PROTO_PATH:+:$QUIXOS_PROTO_PATH}"
''; '';
}; };
} }