nixpkgs/pkgs/development/libraries/xlibs-wrapper/default.nix
Eelco Dolstra bbe62e266b * Remove references to dontMakeInstall.
svn path=/nixpkgs/trunk/; revision=7500
2006-12-27 18:24:26 +00:00

13 lines
256 B
Nix

{stdenv, packages}:
stdenv.mkDerivation {
name = "xlibs-wrapper";
buildPhase = "true";
installPhase = "true";
unpackPhase = "sourceRoot=.";
propagatedBuildInputs = packages;
} // {
# For compatability with XFree86.
buildClientLibs = true;
}