mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f42f3b544e
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/sonarr/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.0.0.5163 with grep in /nix/store/jj436rg1mvs3g3xf02gmj005v2cxbj49-sonarr-2.0.0.5163 - directory tree listing: https://gist.github.com/bbde18359d5b8bf065c0a73de225aae1
34 lines
912 B
Nix
34 lines
912 B
Nix
{ stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sonarr-${version}";
|
|
version = "2.0.0.5163";
|
|
|
|
src = fetchurl {
|
|
url = "http://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;
|
|
};
|
|
}
|