nixpkgs/pkgs/development/libraries/xlibs-wrapper/default.nix
2014-02-10 21:04:17 +01:00

15 lines
293 B
Nix

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