nixpkgs/pkgs/desktops/lxqt/core/libfm-qt/default.nix

47 lines
946 B
Nix
Raw Normal View History

2017-02-25 07:44:29 -08:00
{
stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools,
2017-11-01 18:53:34 -07:00
pcre, libexif, xorg, libfm, menu-cache,
2017-02-25 07:44:29 -08:00
qtx11extras, qttools
}:
2016-10-03 14:49:44 -07:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "libfm-qt";
2017-11-01 18:53:34 -07:00
version = "0.12.0";
2016-10-03 14:49:44 -07:00
src = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-11-01 18:53:34 -07:00
sha256 = "0932yl098pc5rwgy9irrc3ys47jx64m3wm702dvs8yy15alv6x4i";
2016-10-03 14:49:44 -07:00
};
nativeBuildInputs = [
cmake
pkgconfig
2017-02-25 07:44:29 -08:00
lxqt-build-tools
2016-10-03 14:49:44 -07:00
];
buildInputs = [
2017-11-01 18:53:34 -07:00
pcre
libexif
xorg.libpthreadstubs
xorg.libxcb
xorg.libXdmcp
2017-02-25 07:44:29 -08:00
qtx11extras
qttools
2016-10-03 14:49:44 -07:00
libfm
menu-cache
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
2017-02-25 07:44:29 -08:00
2016-10-03 14:49:44 -07:00
meta = with stdenv.lib; {
description = "Core library of PCManFM-Qt (Qt binding for libfm)";
homepage = https://github.com/lxde/libfm-qt;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 03:23:38 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 14:49:44 -07:00
};
}