recyclarr overlay
This commit is contained in:
parent
d21fb10f14
commit
b94eb3c95b
1 changed files with 17 additions and 0 deletions
17
overlays/recyclarr.nix
Normal file
17
overlays/recyclarr.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, fetchurl, ...}:
|
||||
self: super:
|
||||
let
|
||||
os = "linux";
|
||||
arch = "x64";
|
||||
in
|
||||
{
|
||||
recyclarr = super.recyclarr.overrideAttrs (old: rec {
|
||||
version = "7.2.1";
|
||||
name = "recyclarr-${version}";
|
||||
hash = "sha256:04vg1s86krg7baifcpnqr5zg6jd6nfw0jhjsq09zzpxwg5skxlf7";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/recyclarr/recyclarr/releases/download/v${version}/recyclarr-${os}-${arch}.tar.xz";
|
||||
inherit hash;
|
||||
};
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue