mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
34 lines
918 B
Nix
34 lines
918 B
Nix
|
{ stdenv, fetchurl, mono, libmediainfo, sqlite, makeWrapper, ... }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "sonarr-${version}";
|
||
|
version = "2.0.0.4230";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz";
|
||
|
sha256 = "16nx0v5hpqlwna2hzpcpzvm7qc361yjxbqnwz5bfnnkb0h7ik5m6";
|
||
|
};
|
||
|
|
||
|
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 ':' "${sqlite.out}/lib" \
|
||
|
--prefix LD_LIBRARY_PATH ':' "${libmediainfo}/lib"
|
||
|
'';
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|