about summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/default.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-09-20 17:01:19 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-09-20 17:01:19 +0000
commit34be37b51e33761b2de5941e67cd0dcb88aaa5c5 (patch)
tree1acb69be8a891de37da3c98220ea6550c1f6293a /pkgs/development/libraries/ccrtp/default.nix
parent3eeec96a31888d329bc4da88f9ac9af164790af4 (diff)
adding twinkle, a voice over IP phone software
svn path=/nixpkgs/trunk/; revision=17303
Diffstat (limited to 'pkgs/development/libraries/ccrtp/default.nix')
-rw-r--r--pkgs/development/libraries/ccrtp/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ccrtp/default.nix b/pkgs/development/libraries/ccrtp/default.nix
new file mode 100644
index 0000000000000..d8b4793dccaa2
--- /dev/null
+++ b/pkgs/development/libraries/ccrtp/default.nix
@@ -0,0 +1,19 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "ccrtp-1.7.0";
+
+  src = fetchurl {
+    url = mirror://gnu/ccrtp/ccrtp-1.7.0.tar.gz;
+    sha256 = "1bjn5l476nk34gipz4jl2p83m735gzanzr046zrkx423zipx4g4j";
+  };
+
+  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 = [args.lib.maintainers.marcweber];
+    platforms = args.lib.platforms.linux;
+  };
+}