summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2020-01-18 02:53:02 +0100
committerJon <jonringer@users.noreply.github.com>2020-01-19 14:30:39 -0800
commit11569307443d0865bc22e1331313683c37b48bfe (patch)
treec5472e26b46f3bc2b683ad052ff6e33aba5cb7a4 /pkgs/servers
parent1946f0ece8caa1ae02b8ad6030f02df04bfaa8a2 (diff)
downloadnixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar.gz
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar.bz2
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar.lz
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar.xz
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.tar.zst
nixpkgs-11569307443d0865bc22e1331313683c37b48bfe.zip
jellyfin: use dotnet runtime instead of sdk
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/jellyfin/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/jellyfin/default.nix b/pkgs/servers/jellyfin/default.nix
index b1116dc4a95..6da342ae880 100644
--- a/pkgs/servers/jellyfin/default.nix
+++ b/pkgs/servers/jellyfin/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, unzip, sqlite, makeWrapper, dotnet-sdk, ffmpeg,
+{ stdenv, lib, fetchurl, unzip, sqlite, makeWrapper, dotnet-netcore, ffmpeg,
   fontconfig, freetype }:
 
 let
@@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
   ];
 
   propagatedBuildInputs = [
-    dotnet-sdk
+    dotnet-netcore
     sqlite
   ];
 
@@ -42,7 +42,7 @@ in stdenv.mkDerivation rec {
     install -dm 755 "$out/opt/jellyfin"
     cp -r * "$out/opt/jellyfin"
 
-    makeWrapper "${dotnet-sdk}/bin/dotnet" $out/bin/jellyfin \
+    makeWrapper "${dotnet-netcore}/bin/dotnet" $out/bin/jellyfin \
       --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [
         sqlite fontconfig freetype stdenv.cc.cc.lib
       ]}:$out/opt/jellyfin/runtimes/${runtimeDir}/native/" \