Author: viric
Date: Fri Jan 21 22:12:34 2011
New Revision: 25664
URL: https://svn.nixos.org/websvn/nix/?rev=25664&sc=1
Log:
Adding freeswitch
Added:
nixpkgs/trunk/pkgs/servers/sip/freeswitch/
nixpkgs/trunk/pkgs/servers/sip/freeswitch/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/servers/sip/freeswitch/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/servers/sip/freeswitch/default.nix Fri Jan 21
22:12:34 2011 (r25664)
@@ -0,0 +1,22 @@
+{ fetchurl, stdenv, ncurses, curl, pkgconfig, gnutls, readline, openssl, perl,
libjpeg }:
+
+stdenv.mkDerivation rec {
+ name = "freeswitch-1.0.7";
+
+ src = fetchurl {
+ url = http://latest.freeswitch.org/freeswitch-1.0.7.tar.gz;
+ sha256 = "0r7mqsc50y7aqm8arbwiq75ikwfrrfhhzdf9r070snrf3b8qkj8w";
+ };
+
+ buildInputs = [ ncurses curl pkgconfig gnutls readline openssl perl libjpeg
];
+
+ # enableParallelBuilding = true;
+
+ meta = {
+ description = "Cross-Platform Scalable FREE Multi-Protocol Soft Switch";
+ homepage = http://freeswitch.org/;
+ license = "MPL1.1";
+ maintainers = with stdenv.lib.maintainers; [ viric ];
+ platforms = with stdenv.lib.platforms; linux;
+ };
+}
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Fri Jan 21 19:34:54
2011 (r25663)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Fri Jan 21 22:12:34
2011 (r25664)
@@ -4408,6 +4408,8 @@
firebird = callPackage ../servers/firebird { };
+ freeswitch = callPackage ../servers/sip/freeswitch { };
+
ghostOne = callPackage ../servers/games/ghost-one {
boost = boostFull;
};
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits