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

Commits on May 11, 2020

  1. freeswitch: 1.10.2 -> 1.10.3

    misuzu committed May 11, 2020
    Copy the full SHA
    fa0bc05 View commit details

Commits on May 12, 2020

  1. Merge pull request #87601 from misuzu/freeswitch-update

    freeswitch: 1.10.2 -> 1.10.3
    bhipple authored May 12, 2020
    Copy the full SHA
    f59b843 View commit details
Showing with 5 additions and 2 deletions.
  1. +5 −2 pkgs/servers/sip/freeswitch/default.nix
7 changes: 5 additions & 2 deletions pkgs/servers/sip/freeswitch/default.nix
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@
, SystemConfiguration

, modules ? null
, nixosTests
}:

let
@@ -89,12 +90,12 @@ in

stdenv.mkDerivation rec {
pname = "freeswitch";
version = "1.10.2";
version = "1.10.3";
src = fetchFromGitHub {
owner = "signalwire";
repo = pname;
rev = "v${version}";
sha256 = "1fmrm51zgrasjbmhs0pzb1lyca3ddx0wd35shvxnkjnifi8qd1h7";
sha256 = "0rp4sxqxd2wsb5iyv0mh11l16zxvh7rbgfg0vcgns823gvh8lqai";
};
postPatch = ''
patchShebangs libs/libvpx/build/make/rtcd.pl
@@ -129,6 +130,8 @@ stdenv.mkDerivation rec {
cp -r conf $out/share/freeswitch/
'';

passthru.tests.freeswitch = nixosTests.freeswitch;

meta = {
description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
homepage = "https://freeswitch.org/";