7f5b839524
`selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'. * Replaced `with args' with formal function arguments in several packages. * Renamed several files to `default.nix'. As a general rule, version numbers should only be included in the filename when there is a reason to keep multiple versions of a package in Nixpkgs. Otherwise, it just makes it harder to update the package. svn path=/nixpkgs/trunk/; revision=18403
27 lines
829 B
Nix
27 lines
829 B
Nix
|
|
args : with args; with builderDefs.passthru.function {src="";};
|
|
let localDefs = builderDefs.passthru.function ((rec {
|
|
src = /* put a fetchurl here */
|
|
fetchurl {
|
|
url = http://fredrik.hubbe.net/x2vnc/x2vnc-1.7.2.tar.gz;
|
|
sha256 = "00bh9j3m6snyd2fgnzhj5vlkj9ibh69gfny9bfzlxbnivb06s1yw";
|
|
};
|
|
|
|
buildInputs = [libX11 xproto xextproto libXext libXrandr randrproto];
|
|
doCreatePrefix = fullDepEntry (''
|
|
ensureDir $out
|
|
'') ["defEnsureDir"];
|
|
configureFlags = [];
|
|
}) // args); /* null is a terminator for sumArgs */
|
|
in with localDefs;
|
|
stdenv.mkDerivation rec {
|
|
name = "x2vnc-1.7.2";
|
|
builder = writeScript (name + "-builder")
|
|
(textClosure localDefs
|
|
[doConfigure doCreatePrefix doMakeInstall doForceShare doPropagate]);
|
|
meta = {
|
|
description = "A program to control a remote VNC server";
|
|
inherit src;
|
|
};
|
|
}
|