depot/third_party/nixpkgs/pkgs/desktops/lomiri/development/cmake-extras/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

49 lines
1.2 KiB
Nix

{ stdenvNoCC
, lib
, fetchFromGitLab
, cmake
, qtbase
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "cmake-extras";
version = "1.7";
src = fetchFromGitLab {
owner = "ubports";
repo = "development/core/cmake-extras";
rev = finalAttrs.version;
hash = "sha256-5bLMk21pSZkuU3jAGTnjPc9ZrvVZqMUWSfFgkTtkYLw=";
};
postPatch = ''
# We have nothing to build here, no need to depend on a C compiler
substituteInPlace CMakeLists.txt \
--replace 'project(cmake-extras' 'project(cmake-extras LANGUAGES NONE'
# This is in a function that reverse dependencies use to determine where to install their files to
substituteInPlace src/QmlPlugins/QmlPluginsConfig.cmake \
--replace "\''${CMAKE_INSTALL_LIBDIR}/qt5/qml" "\''${CMAKE_INSTALL_PREFIX}/${qtbase.qtQmlPrefix}"
'';
strictDeps = true;
# Produces no binaries
dontWrapQtApps = true;
nativeBuildInputs = [
cmake
];
buildInputs = [
qtbase
];
meta = with lib; {
description = "Collection of add-ons for the CMake build tool";
homepage = "https://gitlab.com/ubports/development/core/cmake-extras/";
license = licenses.gpl3Only;
maintainers = teams.lomiri.members;
platforms = platforms.all;
};
})