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.

57 lines
1006 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, json-glib
, libexif
, libfm-qt
, menu-cache
, qtbase
, qttools
, qtx11extras
, gitUpdater
}:
2018-12-30 21:36:32 +00:00
mkDerivation rec {
pname = "lxqt-archiver";
2023-11-05 20:23:49 +00:00
version = "0.9.0";
2018-12-30 21:36:32 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-archiver";
rev = version;
2023-11-05 20:23:49 +00:00
hash = "sha256-8pfUpyjn01D8CL+2PjGkZqyHu+lpHZIXlXn67rZoxMY=";
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
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
qtx11extras
];
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
};
}