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

34 lines
815 B
Nix
Raw Normal View History

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