nixpkgs-suyu/pkgs/desktops/lxqt/core/pcmanfm-qt/default.nix

41 lines
907 B
Nix
Raw Normal View History

2017-02-19 13:43:43 +01:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, lxqt, libfm, menu-cache, lxmenu-data }:
2016-10-04 00:06:13 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pcmanfm-qt";
2017-02-19 13:43:43 +01:00
version = "0.11.3";
2016-10-04 00:06:13 +02:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:43:43 +01:00
sha256 = "04vhfhjmz1a4rhkpb6y35hwg565047rp53rcxf4pdn0i9f6zhr4f";
2016-10-04 00:06:13 +02:00
};
2017-02-19 13:43:43 +01:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-04 00:06:13 +02:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
lxqt.libfm-qt
libfm
menu-cache
lxmenu-data
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "File manager and desktop icon manager (Qt port of PCManFM and libfm)";
homepage = https://github.com/lxde/pcmanfm-qt;
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 13:43:43 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-04 00:06:13 +02:00
};
}