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

39 lines
838 B
Nix
Raw Normal View History

2016-10-03 23:49:44 +02:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt, xorg,
libfm, menu-cache }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "libfm-qt";
2017-02-19 12:23:38 +01:00
version = "0.11.2";
2016-10-03 23:49:44 +02:00
src = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 12:23:38 +01:00
sha256 = "0k2g6bkz7bvawqkjzykbxi18wqsnhbxklqy6aqqkclpzcw45vk5v";
2016-10-03 23:49:44 +02:00
};
nativeBuildInputs = [
cmake
pkgconfig
2017-02-19 12:23:38 +01:00
lxqt.lxqt-build-tools
2016-10-03 23:49:44 +02:00
];
buildInputs = [
qt5.qtx11extras
qt5.qttools
libfm
menu-cache
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
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 12:23:38 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:49:44 +02:00
};
}