nixpkgs/pkgs/development/libraries/xlibs-wrapper/default.nix

15 lines
293 B
Nix
Raw Normal View History

{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;
}