ccrtp: 2.0.9 -> 2.1.2
This commit is contained in:
parent
fe4997d58d
commit
e596f6dab7
2 changed files with 12 additions and 7 deletions
|
@ -1,15 +1,19 @@
|
|||
{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }:
|
||||
{ stdenv, fetchurl, pkgconfig, ucommon, openssl, libgcrypt }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ccrtp-2.0.9";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ccrtp-2.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnu/ccrtp/ccrtp-2.0.9.tar.gz;
|
||||
sha256 = "1prh2niwa4lzvskk12j4ckr7dv141dfh8yjmpkbhbnv4gmpifci0";
|
||||
url = "mirror://gnu/ccrtp/${name}.tar.gz";
|
||||
sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl pkgconfig libgcrypt ];
|
||||
propagatedBuildInputs = [ ucommon ];
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ ucommon openssl libgcrypt ];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-demos"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
|
|
@ -5501,6 +5501,7 @@ let
|
|||
scmccid = callPackage ../development/libraries/scmccid { };
|
||||
|
||||
ccrtp = callPackage ../development/libraries/ccrtp { };
|
||||
|
||||
ccrtp_1_8 = callPackage ../development/libraries/ccrtp/1.8.nix { };
|
||||
|
||||
celt = callPackage ../development/libraries/celt {};
|
||||
|
|
Loading…
Reference in a new issue