diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 14 insertions, 3 deletions
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;}; |
