summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/p2p/ldcpp/1.0.1.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix b/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
new file mode 100644
index 0000000000000..ea1f6b1b84b2a
--- /dev/null
+++ b/pkgs/applications/networking/p2p/ldcpp/1.0.1.nix
@@ -0,0 +1,31 @@
+args : with args; with builderDefs {src="";} null;
+	let localDefs = builderDefs (rec {
+		src = /* put a fetchurl here */
+		fetchurl {
+			url = http://download2.berlios.de/linuxdcpp/linuxdcpp-1.0.1.tar.bz2;
+			sha256 = "0f0vvsa3x3nirqnf2lagpmbbj3pgdcp6wa2gvadj294b3va4hx34";
+		};
+
+		buildInputs = [scons pkgconfig gtk bzip2 pkgconfig libglade
+			openssl libX11];
+		configureFlags = [];
+		doScons = FullDepEntry (''
+			ensureDir $out
+			export NIX_LDFLAGS="$NIX_LDFLAGS -lX11";
+			scons PREFIX=$out 
+			scons PREFIX=$out install
+		'') ["minInit" "doUnpack" "addInputs" "defEnsureDir"];
+	}) args null; /* null is a terminator for sumArgs */
+	in with localDefs;
+stdenv.mkDerivation rec {
+	name = "ldcpp-"+version;
+	builder = writeScript (name + "-builder")
+		(textClosure localDefs 
+			[doScons doForceShare doPropagate]);
+	meta = {
+		description = "
+		Linux DC++ - Direct Connect client
+";
+		inherit src;
+	};
+}