From 523f634c97abaa7f829602e780c8a5fb3b2da21b Mon Sep 17 00:00:00 2001 From: Milo Moisson Date: Sun, 8 Dec 2024 14:57:53 +0100 Subject: [PATCH] chore: update flake lock --- flake.lock | 14 +++++++------- flake.nix | 19 ++++++++----------- 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/flake.lock b/flake.lock index 499a748..3487dd6 100644 --- a/flake.lock +++ b/flake.lock @@ -22,16 +22,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1731797254, - "narHash": "sha256-df3dJApLPhd11AlueuoN0Q4fHo/hagP75LlM5K1sz9g=", + "lastModified": 1733412085, + "narHash": "sha256-FillH0qdWDt/nlO6ED7h4cmN+G9uXwGjwmCnHs0QVYM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "e8c38b73aeb218e27163376a2d617e61a2ad9b59", + "rev": "4dc2fc4e62dbf62b84132fe526356fbac7b03541", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-24.05", + "ref": "nixos-24.11", "repo": "nixpkgs", "type": "github" } @@ -50,11 +50,11 @@ ] }, "locked": { - "lastModified": 1732156292, - "narHash": "sha256-XuTCME5ZausokOJ28AsIoayBVD1soscdoiKweT4VY50=", + "lastModified": 1733625333, + "narHash": "sha256-tIML2axjm4AnlKP29upVJxzBpj4Cy4ak+PKonqQtXmc=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "2d484c7a0db32f2700e253160bcd2aaa6cdca3ba", + "rev": "430c8b054e45ea44fd2c9521a378306ada507a6c", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index f186fc5..52c922f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,16 +1,12 @@ { inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; - rust-overlay = { - url = "github:oxalica/rust-overlay"; - inputs.nixpkgs.follows = "nixpkgs"; - }; + rust-overlay.url = "github:oxalica/rust-overlay"; + rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; - gitignore = { - url = "github:hercules-ci/gitignore.nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; + gitignore.url = "github:hercules-ci/gitignore.nix"; + gitignore.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, rust-overlay, gitignore }: @@ -52,11 +48,12 @@ rust-toolchain act - # cargo-dist + cargo-dist wakatime ]; - buildInputs = with pkgs; [ ]; + + buildInputs = [ ]; RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc; LD_LIBRARY_PATH = makeLibraryPath buildInputs;