mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
1b5744a42d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from radarr
32 lines
942 B
Nix
32 lines
942 B
Nix
{ stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "radarr-${version}";
|
|
version = "0.2.0.1120";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.develop.${version}.linux.tar.gz";
|
|
sha256 = "0vsjaza0k4djb3vnazl2py4qmbxqfyyr0x9p4flq78yn79hp3439";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/${name}}
|
|
cp -r * $out/share/${name}/.
|
|
|
|
makeWrapper "${mono}/bin/mono" $out/bin/Radarr \
|
|
--add-flags "$out/share/${name}/Radarr.exe" \
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [
|
|
curl sqlite libmediainfo ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Usenet/BitTorrent movie downloader.";
|
|
homepage = https://radarr.video/;
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ edwtjo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|