From dc487bc44f3021132c9dcc18ec56f738eb7d466b Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Wed, 20 Jul 2022 20:14:04 -0500 Subject: [PATCH] update to 4.2 pre-release --- flake.lock | 6 +++--- flake.nix | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 72a518e..0288df7 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1653407748, - "narHash": "sha256-g9puJaILRTb9ttlLQ7IehpV7Wcy0n+vs8LOFu6ylQcM=", + "lastModified": 1658290795, + "narHash": "sha256-t9hCidaSxPmzUimcSn51bjqcjjGsoQi6JLrAzJq0dz4=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5ce6597eca7d7b518c03ecda57d45f9404b5e060", + "rev": "614a842b74b7a1497e8cfca7c61bec38f51911b3", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 1bd93bf..88cb33d 100644 --- a/flake.nix +++ b/flake.nix @@ -18,15 +18,16 @@ { radarr = let - version = "4.1.0.6175"; + branch = "develop"; + version = "4.2.0.6438"; os = "linux"; arch = "x64"; in super.radarr.overrideAttrs (old: { inherit version; src = builtins.fetchurl { - url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz"; - sha256 = "sha256:0b3kb7wrh3s3kr5phb2f8flzchnj19i95dd434gdzi551w34536y"; + url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.${branch}.${version}.${os}-core-${arch}.tar.gz"; + sha256 = "sha256:1qkg81q29mnc5zc2h6khghx35mn41xjpnz51pxpsfwzwkjycbgg1"; }; }); }