summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-03-15 06:11:45 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-03-15 06:11:45 +0000
commitf87e85c2a8eedf735023a923e4050cbf11b1216a (patch)
tree043213f0a073c5c30c5e38698cf67ce0d7e02b3d /pkgs/applications
parenteb058a54b390be10143ad226dbcc6478e13eb9d8 (diff)
Added LinuxDC++. Claimed to support newer protocol - claim is by valknut team..
svn path=/nixpkgs/trunk/; revision=11132
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/kiwixbuilder/default.nix28
-rw-r--r--pkgs/applications/networking/p2p/ldcpp/1.0.1.nix31
2 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/applications/misc/kiwixbuilder/default.nix b/pkgs/applications/misc/kiwixbuilder/default.nix
new file mode 100644
index 0000000000000..cf10ca58c4bc2
--- /dev/null
+++ b/pkgs/applications/misc/kiwixbuilder/default.nix
@@ -0,0 +1,28 @@
+args : with args; with builderDefs {src="";} null;
+	let localDefs = builderDefs (rec {
+		src = /* put a fetchurl here */
+		fetchurl {
+			url = http://downloads.sourceforge.net/kiwix/kiwixbuilder.tgz;
+			sha256 = "0qb97smw4675i3hh328a7f65payw1w71bn4d32ycdkmqk56zl4ds";
+		};
+		buildInputs = [glib zlib];
+		configureFlags = [" --prefix=$out "];
+		preConfigure = FullDepEntry (''
+			export NIX_CFLAGS_COMPILE=$NIX_CFLAGS_COMPILE' -I${glib}/include/glib-2.0/ -I${glib}/lib/glib-2.0/include/ '
+			export NIX_LDFLAGS=$NIX_LDFLAGS' -lglib-2.0 '
+			sed -e 's@/usr/local/lib/libz\.a@${zlib}/lib/libz.a@' -i configure
+		'') ["minInit" "doUnpack"];
+	}) args null; /* null is a terminator for sumArgs */
+	in with localDefs;
+stdenv.mkDerivation rec {
+	name = "kiwix";
+	builder = writeScript (name + "-builder")
+		(textClosure localDefs 
+			[preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
+	meta = {
+		description = "
+		Offline Wikipedia viewer builder.
+";
+		inherit src;
+	};
+}
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;
+	};
+}