update to 4.2 pre-release
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jeffrey C. Ollie 2022-07-20 20:14:04 -05:00
parent b22d10a171
commit dc487bc44f
2 changed files with 7 additions and 6 deletions

View file

@ -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": {

View file

@ -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";
};
});
}