Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ba2e5e624a30
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 324f038547cd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 16, 2020

  1. Copy the full SHA
    7653c5f View commit details

Commits on Dec 17, 2020

  1. Merge pull request #107029 from r-ryantm/auto-update/plexmediaserver

    plexRaw: 1.21.0.3711-b509cc236 -> 1.21.1.3795-ee64ab56f
    LnL7 authored Dec 17, 2020
    Copy the full SHA
    324f038 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/servers/plex/raw.nix
6 changes: 3 additions & 3 deletions pkgs/servers/plex/raw.nix
Original file line number Diff line number Diff line change
@@ -12,16 +12,16 @@
# server, and the FHS userenv and corresponding NixOS module should
# automatically pick up the changes.
stdenv.mkDerivation rec {
version = "1.21.0.3711-b509cc236";
version = "1.21.1.3795-ee64ab56f";
pname = "plexmediaserver";

# Fetch the source
src = if stdenv.hostPlatform.system == "aarch64-linux" then fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_arm64.deb";
sha256 = "0nhxxfcds3byhbz8gsd9107diy182m33xbcc8jgi78hwfadyjj7h";
sha256 = "1k4ayb5jygi9g78703r1z4y4m0mp66m6jc72zj4zqk4xckzvjf4f";
} else fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb";
sha256 = "0izsmcc337paakz1nqfsr78s097sxyxy3kbs43qpzpx7w5wshynb";
sha256 = "0qfc5k9sgi465pgrhv8nbm5p7s4wdpaljj54m2i7hfydva8ws8ci";
};

outputs = [ "out" "basedb" ];