diff options
author | Joris | 2025-02-07 10:43:11 +0100 |
---|---|---|
committer | Joris | 2025-02-07 10:43:11 +0100 |
commit | 99fe1002c5961dcf5063b7ed51a9dfc426f96ace (patch) | |
tree | b7a74342f2eb7b0ce487c80df84c6763a03247df /flake.nix | |
parent | 582c03eacbc73b851aa232c404be71b2cf77295a (diff) |
Upgrade dependencies
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -2,8 +2,10 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; - rust-overlay.url = "github:oxalica/rust-overlay"; - rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; + rust-overlay = { + url = "github:oxalica/rust-overlay"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }: @@ -18,12 +20,13 @@ { devShell = mkShell { buildInputs = [ - rust-bin.stable."1.82.0".default - rust-analyzer + cargo-edit cargo-watch - pkg-config graphene gtk4 + pkg-config + rust-analyzer + rust-bin.stable."1.84.0".default sqlite ]; }; |