3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/lxqt-build-tools/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
2021-05-17 20:21:50 +01:00
, stdenv
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, pcre
, qtbase
, glib
2021-04-16 21:32:41 +01:00
, perl
, lxqtUpdateScript
}:
2017-02-19 10:45:37 +00:00
mkDerivation rec {
2019-02-05 23:13:17 +00:00
pname = "lxqt-build-tools";
2021-11-05 17:35:00 +00:00
version = "0.10.0";
2017-02-19 10:45:37 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-05 23:13:17 +00:00
repo = pname;
2017-02-19 10:45:37 +00:00
rev = version;
2021-11-05 17:35:00 +00:00
sha256 = "1hb04zgpalxv6da3myf1dxsbjix15dczzfq8a24g5dg2zfhwpx21";
2017-02-19 10:45:37 +00:00
};
2021-05-17 20:21:50 +01:00
# Nix clang on darwin identifies as 'Clang', not 'AppleClang'
# Without this, dependants fail to link.
postPatch = ''
substituteInPlace cmake/modules/LXQtCompilerSettings.cmake \
--replace AppleClang Clang
'';
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
setupHook
];
2018-06-20 22:49:24 +01:00
buildInputs = [
qtbase
glib
pcre
];
2017-11-02 01:52:41 +00:00
2021-04-16 21:32:41 +01:00
propagatedBuildInputs = [
perl # needed by LXQtTranslateDesktop.cmake
];
setupHook = ./setup-hook.sh;
# We're dependent on this macro doing add_definitions in most places
# But we have the setup-hook to set the values.
postInstall = ''
rm $out/share/cmake/lxqt-build-tools/modules/LXQtConfigVars.cmake
cp ${./LXQtConfigVars.cmake} $out/share/cmake/lxqt-build-tools/modules/LXQtConfigVars.cmake
'';
2017-02-19 10:45:37 +00:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-build-tools";
description = "Various packaging tools and scripts for LXQt applications";
license = licenses.lgpl21Plus;
2017-02-19 10:45:37 +00:00
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}