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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
920 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, pcre
, libexif
, xorg
, libfm
, menu-cache
, qtx11extras
, qttools
, gitUpdater
2017-02-25 15:44:29 +00:00
}:
2016-10-03 21:49:44 +00:00
mkDerivation rec {
pname = "libfm-qt";
2023-04-16 16:53:28 +00:00
version = "1.3.0";
2016-10-03 21:49:44 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = "libfm-qt";
2020-04-26 20:25:21 +00:00
rev = version;
2023-04-16 16:53:28 +00:00
sha256 = "MK1QMYfr0T/cE46IUWarG9a/PJUSSskk1W3y2+kvEwg=";
2016-10-03 21:49:44 +00:00
};
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2016-10-03 21:49:44 +00:00
];
buildInputs = [
2017-11-02 01:53:34 +00:00
pcre
libexif
xorg.libpthreadstubs
xorg.libxcb
xorg.libXdmcp
2017-02-25 15:44:29 +00:00
qtx11extras
qttools
2016-10-03 21:49:44 +00:00
libfm
menu-cache
];
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;
2016-10-03 21:49:44 +00:00
platforms = with platforms; unix;
2022-04-14 13:52:15 +00:00
maintainers = teams.lxqt.members;
2016-10-03 21:49:44 +00:00
};
}