Skip to content

Commit

Permalink
Merge pull request #83225 from vbgl/pjsip-2.10
Browse files Browse the repository at this point in the history
pjsip: 2.9 → 2.10
  • Loading branch information
bhipple committed Mar 29, 2020
2 parents ef29959 + 98eb146 commit eda60c5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/applications/networking/pjsip/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchurl, openssl, libsamplerate, alsaLib }:
{ stdenv, fetchFromGitHub, openssl, libsamplerate, alsaLib }:

stdenv.mkDerivation rec {
pname = "pjsip";
version = "2.9";
version = "2.10";

src = fetchurl {
url = "https://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2";
sha256 = "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi";
src = fetchFromGitHub {
owner = pname;
repo = "pjproject";
rev = version;
sha256 = "1aklicpgwc88578k03i5d5cm5h8mfm7hmx8vfprchbmaa2p8f4z0";
};

patches = [ ./fix-aarch64.patch ];
Expand Down

0 comments on commit eda60c5

Please sign in to comment.