Skip to content

Commit

Permalink
Try to bump rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-borovkov committed Jan 8, 2025
1 parent 4b14bf1 commit 5ad5f9d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,18 @@
{
overlays.default = final: _prev:
let
rustStable = final.rustChannelOf {
channel = "stable";
date = "2023-12-01";
};

inherit ((builtins.fromTOML (builtins.readFile ./Cargo.toml)).package) version;
inherit (final) openssl perl pkg-config stdenv lib darwin rustPlatform;
inherit (final) openssl perl pkg-config stdenv lib darwin;
in
{
screenly-cli = rustPlatform.buildRustPackage rec {
inherit version;
screenly-cli = rustStable.rustPlatform.buildRustPackage rec {
pname = "screenly-cli";
inherit version;

src = lib.cleanSource ./.;

Expand Down Expand Up @@ -74,5 +79,5 @@
shellHook = "exec $SHELL";
};
});
};
}
}

0 comments on commit 5ad5f9d

Please sign in to comment.