summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/1.8.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/ccrtp/1.8.nix')
-rw-r--r--pkgs/development/libraries/ccrtp/1.8.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ccrtp/1.8.nix b/pkgs/development/libraries/ccrtp/1.8.nix
new file mode 100644
index 000000000000..26e7050a60df
--- /dev/null
+++ b/pkgs/development/libraries/ccrtp/1.8.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, openssl, pkgconfig, libgcrypt, commoncpp2 }:
+
+stdenv.mkDerivation {
+  name = "ccrtp-1.8.0";
+
+  src = fetchurl {
+    url = mirror://gnu/ccrtp/ccrtp-1.8.0.tar.gz;
+    sha256 = "0wr4dandlfajhmg90nqyvwv61ikn9vdycji001310y3c4zfysprn";
+  };
+
+  buildInputs = [ openssl pkgconfig libgcrypt commoncpp2 ];
+
+  meta = { 
+    description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF";
+    homepage = "http://www.gnu.org/software/ccrtp/";
+    license = "GPLv2";
+    maintainers = [ stdenv.lib.maintainers.marcweber ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}