about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/psi
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/psi')
-rw-r--r--pkgs/applications/networking/instant-messengers/psi/0.11.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/psi/0.11.nix b/pkgs/applications/networking/instant-messengers/psi/0.11.nix
new file mode 100644
index 000000000000..5cd1ef1c43fa
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/psi/0.11.nix
@@ -0,0 +1,30 @@
+
+args : with args; with builderDefs {src="";} null;
+	let localDefs = builderDefs (rec {
+		src = /* put a fetchurl here */
+		fetchurl {
+			url = ftp://ftp.ru.debian.org/debian/pool/main/p/psi/psi_0.11.orig.tar.gz;
+			sha256 = "1rgjahngari4pwhi0zz9mricaaqxkk8ry8w6s1vgsq3zwa2l5x57";
+		};
+
+		buildInputs = [aspell qt zlib sox openssl libX11 xproto 
+			libSM libICE];
+		configureFlags = [" --with-zlib-inc=${zlib}/include "
+			" --with-openssl-inc=${openssl}/include "
+		];
+	}) args null; /* null is a terminator for sumArgs */
+	in with localDefs;
+stdenv.mkDerivation rec {
+	name = "psi-"+version;
+	MAKE="make";
+	builder = writeScript (name + "-builder")
+		(textClosure localDefs 
+			["doConfigure" "doMakeInstall" doForceShare doPropagate]);
+	meta = {
+		description = "
+		Psi, an XMPP (Jabber) client.
+";
+		inherit src;
+	};
+}
+