mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
51 lines
2.0 KiB
Nix
51 lines
2.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, python3, spirv-headers }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "spirv-tools";
|
|
version = "1.3.296.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "SPIRV-Tools";
|
|
rev = "vulkan-sdk-${version}";
|
|
hash = "sha256-ExseInoB/mMtVUOf0KMrQwDQ5UQdo3Ru7VnGMGPeXrk=";
|
|
};
|
|
|
|
# The cmake options are sufficient for turning on static building, but not
|
|
# for disabling shared building, just trim the shared lib from the CMake
|
|
# description
|
|
patches = lib.optional stdenv.hostPlatform.isStatic ./no-shared-libs.patch;
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
|
|
cmakeFlags = [
|
|
"-DSPIRV-Headers_SOURCE_DIR=${spirv-headers.src}"
|
|
# Avoid blanket -Werror to evade build failures on less
|
|
# tested compilers.
|
|
"-DSPIRV_WERROR=OFF"
|
|
];
|
|
|
|
# https://github.com/KhronosGroup/SPIRV-Tools/issues/3905
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace '-P ''${CMAKE_CURRENT_SOURCE_DIR}/cmake/write_pkg_config.cmake' \
|
|
'-DCMAKE_INSTALL_FULL_LIBDIR=''${CMAKE_INSTALL_FULL_LIBDIR}
|
|
-DCMAKE_INSTALL_FULL_INCLUDEDIR=''${CMAKE_INSTALL_FULL_INCLUDEDIR}
|
|
-P ''${CMAKE_CURRENT_SOURCE_DIR}/cmake/write_pkg_config.cmake'
|
|
substituteInPlace cmake/SPIRV-Tools.pc.in \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
substituteInPlace cmake/SPIRV-Tools-shared.pc.in \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "SPIR-V Tools project provides an API and commands for processing SPIR-V modules";
|
|
homepage = "https://github.com/KhronosGroup/SPIRV-Tools";
|
|
license = licenses.asl20;
|
|
platforms = with platforms; unix ++ windows;
|
|
maintainers = [ maintainers.ralith ];
|
|
};
|
|
}
|