Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 45f52f765cd9
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f82b65bd3eb0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 3, 2018

  1. kodi: fix nfs support (#46006)

    libnfs is required to be in the LD_LIBRARY_PATH for kodi if you want nfs support 
    see: https://www.reddit.com/r/NixOS/comments/9aiquo/how_to_enable_nfs_support_in_kodi/
    
    (cherry picked from commit 435eccf)
    aanderse authored and xeji committed Sep 3, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    f82b65b View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/applications/video/kodi/default.nix
2 changes: 1 addition & 1 deletion pkgs/applications/video/kodi/default.nix
Original file line number Diff line number Diff line change
@@ -189,7 +189,7 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/$p \
--prefix PATH ":" "${lib.makeBinPath [ python2 glxinfo xdpyinfo ]}" \
--prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath
[ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ]}"
([ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass ] ++ lib.optional nfsSupport libnfs)}"
done
substituteInPlace $out/share/xsessions/kodi.desktop \