2008-08-19 07:54:09 +02:00
|
|
|
args : with args; with builderDefs;
|
2008-11-04 22:24:10 +01:00
|
|
|
let localDefs = builderDefs.passthru.function ((rec {
|
2008-03-15 07:11:45 +01:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
fetchurl {
|
2009-05-10 21:39:59 +02:00
|
|
|
url = http://launchpad.net/linuxdcpp/1.0/1.0.3/+download/linuxdcpp-1.0.3.tar.bz2;
|
|
|
|
sha256 = "0w9c8k13cl85y4v4av8ic6w4zkdivcj6p5q86llfh3sz077vckiv";
|
2008-03-15 07:11:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [scons pkgconfig gtk bzip2 pkgconfig libglade
|
|
|
|
openssl libX11];
|
|
|
|
configureFlags = [];
|
2009-05-20 01:25:58 +02:00
|
|
|
doScons = fullDepEntry (''
|
2008-03-15 07:11:45 +01:00
|
|
|
ensureDir $out
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lX11";
|
|
|
|
scons PREFIX=$out
|
|
|
|
scons PREFIX=$out install
|
|
|
|
'') ["minInit" "doUnpack" "addInputs" "defEnsureDir"];
|
2008-08-19 07:54:09 +02:00
|
|
|
}) // args);
|
2008-03-15 07:11:45 +01:00
|
|
|
in with localDefs;
|
|
|
|
stdenv.mkDerivation rec {
|
2009-05-11 13:22:26 +02:00
|
|
|
name = "ldcpp-1.0.3";
|
2008-03-15 07:11:45 +01:00
|
|
|
builder = writeScript (name + "-builder")
|
|
|
|
(textClosure localDefs
|
|
|
|
[doScons doForceShare doPropagate]);
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "Linux DC++ - Direct Connect client";
|
2008-03-15 07:11:45 +01:00
|
|
|
inherit src;
|
|
|
|
};
|
|
|
|
}
|