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

34 lines
850 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, qtbase, qtsvg, lxqt-build-tools }:
2016-10-04 00:43:06 +03:00
mkDerivation rec {
2019-02-06 02:13:21 +03:00
pname = "libqtxdg";
2019-10-28 20:23:12 +03:00
version = "3.4.0";
2016-10-04 00:43:06 +03:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-06 02:13:21 +03:00
repo = pname;
2016-10-04 00:43:06 +03:00
rev = version;
2019-10-28 20:23:12 +03:00
sha256 = "16jqnpc740a6phq7vcgy85hl7253yzyw4m5h71r0vijk79ir73b5";
2016-10-04 00:43:06 +03:00
};
2019-02-27 00:30:53 +03:00
nativeBuildInputs = [ cmake lxqt-build-tools ];
2016-10-04 00:43:06 +03:00
2019-02-06 02:13:10 +03:00
buildInputs = [ qtbase qtsvg ];
2016-10-04 00:43:06 +03:00
2017-11-02 04:50:28 +03:00
preConfigure = ''
cmakeFlagsArray+=(
2019-02-27 00:30:53 +03:00
"-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
)
2017-11-02 04:50:28 +03:00
'';
meta = with lib; {
2016-10-04 00:43:06 +03:00
description = "Qt implementation of freedesktop.org xdg specs";
homepage = "https://github.com/lxqt/libqtxdg";
2016-10-04 00:43:06 +03:00
license = licenses.lgpl21;
platforms = platforms.linux;
2017-11-02 04:50:28 +03:00
maintainers = with maintainers; [ romildo ];
2016-10-04 00:43:06 +03:00
};
}