Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f50e6888163f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 599ecd583fae
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 18, 2018

  1. Copy the full SHA
    d1f7c51 View commit details

Commits on May 2, 2018

  1. Merge pull request #39094 from Ralith/vulkan

    vulkan-loader: fix broken symlink in output
    xeji authored May 2, 2018
    Copy the full SHA
    599ecd5 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/vulkan-loader/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/vulkan-loader/default.nix
Original file line number Diff line number Diff line change
@@ -48,8 +48,8 @@ stdenv.mkDerivation rec {
cp -d loader/libvulkan.so* $out/lib
cp demos/vulkaninfo $out/bin
mkdir -p $out/lib $out/share/vulkan/explicit_layer.d
cp -d layers/*.so $out/lib/
cp -d layers/*.json $out/share/vulkan/explicit_layer.d/
cp -L layers/*.so $out/lib/
cp -L layers/*.json $out/share/vulkan/explicit_layer.d/
sed -i "s:\\./lib:$out/lib/lib:g" "$out/share/vulkan/"*/*.json
mkdir -p $dev/include
cp -rv ../include $dev/