summaryrefslogtreecommitdiff
path: root/meta/flake.nix
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:43:51 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:43:51 +0300
commitb85e90fc3480da0e6a48da73201a0b22488cc650 (patch)
tree42b2e083e7d268747b01a03c0bedb48a9394585e /meta/flake.nix
parent5c7048091e3a191e8a34f26852a8976b254e339b (diff)
parentf88d1f18953f9619444d56756702c7eb54580ab1 (diff)
downloadProject-Tick-b85e90fc3480da0e6a48da73201a0b22488cc650.tar.gz
Project-Tick-b85e90fc3480da0e6a48da73201a0b22488cc650.zip
Add 'meta/' from commit 'f88d1f18953f9619444d56756702c7eb54580ab1'
git-subtree-dir: meta git-subtree-mainline: 5c7048091e3a191e8a34f26852a8976b254e339b git-subtree-split: f88d1f18953f9619444d56756702c7eb54580ab1
Diffstat (limited to 'meta/flake.nix')
-rw-r--r--meta/flake.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/flake.nix b/meta/flake.nix
new file mode 100644
index 0000000000..aaacaa58e5
--- /dev/null
+++ b/meta/flake.nix
@@ -0,0 +1,35 @@
+{
+ description = "Prism Launcher Metadata generation scripts";
+
+ inputs = {
+ nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
+ flake-parts = {
+ url = "github:hercules-ci/flake-parts";
+ inputs.nixpkgs-lib.follows = "nixpkgs";
+ };
+ git-hooks = {
+ url = "github:cachix/git-hooks.nix";
+ inputs.flake-compat.follows = "";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+ };
+
+ outputs = inputs:
+ inputs.flake-parts.lib.mkFlake
+ {inherit inputs;}
+ {
+ imports = [
+ inputs.git-hooks.flakeModule
+
+ ./nix/dev.nix
+ ./nix/nixos
+ ./nix/packages.nix
+ ];
+
+ # Supported systems.
+ systems = [
+ "x86_64-linux"
+ "aarch64-linux"
+ ];
+ };
+}