Unverified Commit 5bd14b3c authored by Bernardo Meurer's avatar Bernardo Meurer Committed by GitHub
Browse files

Merge pull request #183113 from lovesegfault/roon-1.8-1021

roon-server: 1.8-988 -> 1.8-1021
parents c0e14f94 31bbebb1
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -14,17 +14,17 @@
, openssl
, stdenv
}:
stdenv.mkDerivation rec {
  pname = "roon-server";
  version = "1.8-988";

  src =
let
      urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "00" ] version;
  version = "1.8-1021";
  urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "0" ] version;
in
    fetchurl {
      url = "http://download.roonlabs.com/builds/RoonServer_linuxx64_${urlVersion}.tar.bz2";
      hash = "sha256-e8hSvHKeyJOIp6EWy1JLOWnj6HE2McFk9bw5vVZ96/I=";
stdenv.mkDerivation {
  pname = "roon-server";
  inherit version;

  src = fetchurl {
    url = "https://download.roonlabs.com/builds/RoonServer_linuxx64_${urlVersion}.tar.bz2";
    hash = "sha256-obG6e/6AxNvUZkZzgS2QAxoSbJIM2pwuQDI0O2B90J8=";
  };

  dontConfigure = true;