nixpkgs/pkgs/desktops/lxqt/libqtxdg/default.nix

50 lines
987 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, qtsvg
, lxqt-build-tools
, lxqtUpdateScript
}:
2016-10-03 22:43:06 +01:00
mkDerivation rec {
2019-02-05 23:13:21 +00:00
pname = "libqtxdg";
2021-04-16 21:32:40 +01:00
version = "3.7.1";
2016-10-03 22:43:06 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-05 23:13:21 +00:00
repo = pname;
2016-10-03 22:43:06 +01:00
rev = version;
2021-04-16 21:32:40 +01:00
sha256 = "1x806hdics3d49ys0a2vkln9znidj82qscjnpcqxclxn26xqzd91";
2016-10-03 22:43:06 +01:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-03 22:43:06 +01:00
buildInputs = [
qtbase
qtsvg
];
2016-10-03 22:43:06 +01:00
2017-11-02 01:50:28 +00:00
preConfigure = ''
cmakeFlagsArray+=(
2020-04-26 21:25:21 +01:00
"-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix/iconengines"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
)
2017-11-02 01:50:28 +00:00
'';
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/libqtxdg";
description = "Qt implementation of freedesktop.org xdg specs";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2017-11-02 01:50:28 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:43:06 +01:00
};
}