synchronize with trunk

svn path=/nixpkgs/branches/stdenv-updates/; revision=29851
This commit is contained in:
Peter Simons
2011-10-14 22:06:50 +00:00
56 changed files with 657 additions and 580 deletions

View File

@@ -0,0 +1,22 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation rec {
name = "disper-0.3.0";
buildInputs = [python];
preConfigure = ''
export makeFlags="PREFIX=$out"
'';
src = fetchurl {
url = http://ppa.launchpad.net/disper-dev/ppa/ubuntu/pool/main/d/disper/disper_0.3.0.tar.gz;
sha256 = "1mfqidm5c89nknzksabqgjygdp57xpszz7hy2dxh39hpgrsk3l58";
};
meta = {
description = "Disper is an on-the-fly display switch utility.";
homepage = http://willem.engen.nl/projects/disper/;
};
}