nixpkgs/pkgs/desktops/lxqt/lxqt-archiver/default.nix

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

59 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
2024-04-18 17:21:40 +00:00
, stdenv
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, json-glib
, libexif
, libfm-qt
, menu-cache
, qtbase
, qttools
2024-04-18 17:21:40 +00:00
, qtwayland
, wrapQtAppsHook
, gitUpdater
}:
2018-12-30 21:36:32 +00:00
2024-04-18 17:21:40 +00:00
stdenv.mkDerivation rec {
pname = "lxqt-archiver";
2024-11-07 02:22:14 +00:00
version = "1.1.0";
2018-12-30 21:36:32 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-archiver";
rev = version;
2024-11-07 02:22:14 +00:00
hash = "sha256-a3NdU1OZI+BqtvpUhqhwylf5upFJxeg8B+1cPTAdDr4=";
2018-12-30 21:36:32 +00:00
};
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
2018-12-30 21:36:32 +00:00
lxqt-build-tools
2023-11-05 20:23:49 +00:00
qttools
2024-04-18 17:21:40 +00:00
wrapQtAppsHook
2018-12-30 21:36:32 +00:00
];
buildInputs = [
json-glib
libexif
2018-12-30 21:36:32 +00:00
libfm-qt
menu-cache
2018-12-30 21:36:32 +00:00
qtbase
2024-04-18 17:21:40 +00:00
qtwayland
2018-12-30 21:36:32 +00:00
];
hardeningDisable = [ "format" ];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-archiver/";
description = "Archive tool for the LXQt desktop environment";
mainProgram = "lxqt-archiver";
license = licenses.gpl2Plus;
2018-12-30 21:36:32 +00:00
platforms = with platforms; unix;
2022-04-14 13:52:15 +00:00
maintainers = with maintainers; [ jchw ] ++ teams.lxqt.members;
2018-12-30 21:36:32 +00:00
};
}