Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ccrtp: 2.0.9 -> 2.1.2

+12 -7
+11 -7
pkgs/development/libraries/ccrtp/default.nix
··· 1 - { stdenv, fetchurl, openssl, pkgconfig, libgcrypt, ucommon }: 1 + { stdenv, fetchurl, pkgconfig, ucommon, openssl, libgcrypt }: 2 2 3 - stdenv.mkDerivation { 4 - name = "ccrtp-2.0.9"; 3 + stdenv.mkDerivation rec { 4 + name = "ccrtp-2.1.2"; 5 5 6 6 src = fetchurl { 7 - url = mirror://gnu/ccrtp/ccrtp-2.0.9.tar.gz; 8 - sha256 = "1prh2niwa4lzvskk12j4ckr7dv141dfh8yjmpkbhbnv4gmpifci0"; 7 + url = "mirror://gnu/ccrtp/${name}.tar.gz"; 8 + sha256 = "17ili8l7zqbbkzr1rcy4hlnazkf50mds41wg6n7bfdsx3c7cldgh"; 9 9 }; 10 10 11 - buildInputs = [ openssl pkgconfig libgcrypt ]; 12 - propagatedBuildInputs = [ ucommon ]; 11 + buildInputs = [ pkgconfig ]; 12 + propagatedBuildInputs = [ ucommon openssl libgcrypt ]; 13 + 14 + configureFlags = [ 15 + "--disable-demos" 16 + ]; 13 17 14 18 doCheck = true; 15 19
+1
pkgs/top-level/all-packages.nix
··· 5501 5501 scmccid = callPackage ../development/libraries/scmccid { }; 5502 5502 5503 5503 ccrtp = callPackage ../development/libraries/ccrtp { }; 5504 + 5504 5505 ccrtp_1_8 = callPackage ../development/libraries/ccrtp/1.8.nix { }; 5505 5506 5506 5507 celt = callPackage ../development/libraries/celt {};