mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +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.0.2"
|
|
, 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.0.2" = "sha256-Ntj+yixGGGgL8ylRv2IJsWtapxE71JNl9cC9K0JToNU=";
|
|
}."${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;
|
|
};
|
|
}
|