mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, libXdmcp
|
|
, libexif
|
|
, libfm
|
|
, libpthreadstubs
|
|
, libxcb
|
|
, lxqt-build-tools
|
|
, lxqt-menu-data
|
|
, menu-cache
|
|
, pcre
|
|
, pkg-config
|
|
, qttools
|
|
, wrapQtAppsHook
|
|
, gitUpdater
|
|
, version ? "2.1.0"
|
|
, qtx11extras ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfm-qt";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = "libfm-qt";
|
|
rev = version;
|
|
hash = {
|
|
"1.4.0" = "sha256-QxPYSA7537K+/dRTxIYyg+Q/kj75rZOdzlUsmSdQcn4=";
|
|
"2.1.0" = "sha256-yH3lyOpmDWjA3bV6msjw7fShs1HnAFOmkGer2Z9N/Tg=";
|
|
}."${version}";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
lxqt-build-tools
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libXdmcp
|
|
libexif
|
|
libfm
|
|
libpthreadstubs
|
|
libxcb
|
|
lxqt-menu-data
|
|
menu-cache
|
|
pcre
|
|
] ++ (lib.optionals (lib.versionAtLeast "2.0.0" version) [qtx11extras])
|
|
;
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lxqt/libfm-qt";
|
|
description = "Core library of PCManFM-Qt (Qt binding for libfm)";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = with platforms; unix;
|
|
maintainers = teams.lxqt.members;
|
|
};
|
|
}
|