From 6c8ba79371470b63bc510c3a1a1131b50d0d6445 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 21 Mar 2026 19:53:48 +0100 Subject: feat(flake): Use the released git https inputs --- flake.nix | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index b793868..44e1e42 100644 --- a/flake.nix +++ b/flake.nix @@ -14,15 +14,26 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small"; + # Inputs for following + rust-overlay = { + url = "github:oxalica/rust-overlay"; + inputs = { + nixpkgs.follows = "nixpkgs"; + }; + }; + crane.url = "github:ipetkov/crane"; + rocie-mobile = { - url = "git+file:../rocie-mobile"; + url = "git+https://git.foss-syndicate.org/bpeetz/rocie/web-client?ref=prime"; inputs = { nixpkgs.follows = "nixpkgs"; treefmt-nix.follows = "treefmt-nix"; + rust-overlay.follows = "rust-overlay"; + crane.follows = "crane"; }; }; rocie-server = { - url = "git+file:../rocie-server"; + url = "git+https://git.foss-syndicate.org/bpeetz/rocie/server?ref=prime"; inputs = { nixpkgs.follows = "nixpkgs"; treefmt-nix.follows = "treefmt-nix"; @@ -43,10 +54,10 @@ treefmt-nix, rocie-mobile, rocie-server, + ... }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages."${system}"; - inherit (pkgs) lib; treefmtEval = import ./treefmt.nix {inherit treefmt-nix pkgs;}; -- cgit 1.4.1