2019-02-05 23:13:10 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, qtbase, qtsvg }:
|
2016-10-03 22:43:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libqtxdg-${version}";
|
2019-02-05 23:13:10 +00:00
|
|
|
version = "3.3.0";
|
2016-10-03 22:43:06 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2016-10-03 22:43:06 +01:00
|
|
|
repo = "libqtxdg";
|
|
|
|
rev = version;
|
2019-02-05 23:13:10 +00:00
|
|
|
sha256 = " got: sha256:0qgqqgy15h0d1fwk4mnbv2hirz8njjjlng64bv33rc6wwrsaa50b";
|
2016-10-03 22:43:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2019-02-05 23:13:10 +00:00
|
|
|
buildInputs = [ qtbase qtsvg ];
|
2016-10-03 22:43:06 +01:00
|
|
|
|
2017-11-02 01:50:28 +00:00
|
|
|
preConfigure = ''
|
2018-04-03 21:54:38 +01:00
|
|
|
cmakeFlagsArray+=(
|
|
|
|
"-DQTXDGX_ICONENGINEPLUGIN_INSTALL_PATH=$out/$qtPluginPrefix"
|
|
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
)
|
2017-11-02 01:50:28 +00:00
|
|
|
'';
|
|
|
|
|
2016-10-03 22:43:06 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt implementation of freedesktop.org xdg specs";
|
2018-05-22 02:24:38 +01:00
|
|
|
homepage = https://github.com/lxqt/libqtxdg;
|
2016-10-03 22:43:06 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = with platforms; unix;
|
2017-11-02 01:50:28 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2016-10-03 22:43:06 +01:00
|
|
|
};
|
|
|
|
}
|