2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
34 lines
903 B
Nix
34 lines
903 B
Nix
{ stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sonarr";
|
|
version = "2.0.0.5338";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz";
|
|
sha256 = "05l7l4d1765m01c14iz8lcr61dnm4xd5p09sns4w8wmanks9jg3x";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|