57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
34 lines
913 B
Nix
34 lines
913 B
Nix
{ stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sonarr-${version}";
|
|
version = "2.0.0.5163";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz";
|
|
sha256 = "037rs0cb7dfiblfy02x2l4amv9dmx1wiz5pa97vpczfgk5gq99y3";
|
|
};
|
|
|
|
buildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r * $out/bin/
|
|
|
|
makeWrapper "${mono}/bin/mono" $out/bin/NzbDrone \
|
|
--add-flags "$out/bin/NzbDrone.exe" \
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [
|
|
curl sqlite libmediainfo ]}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Smart PVR for newsgroup and bittorrent users";
|
|
homepage = https://sonarr.tv/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.fadenb ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|