3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/lxqt-archiver/default.nix

52 lines
941 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
, libfm-qt
, qtbase
, qttools
, qtx11extras
, lxqtUpdateScript
}:
2018-12-30 21:36:32 +00:00
mkDerivation rec {
pname = "lxqt-archiver";
2021-04-16 21:32:40 +01:00
version = "0.4.0";
2018-12-30 21:36:32 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-archiver";
rev = version;
2021-04-16 21:32:40 +01:00
sha256 = "0wpayzcyqcnvzk95bqql7p07l8p7mwdgdj7zlbcsdn0wis4yhjm6";
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
];
buildInputs = [
json-glib
libfm-qt
qtbase
qttools
qtx11extras
];
hardeningDisable = [ "format" ];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-archiver/";
description = "Archive tool for the LXQt desktop environment";
license = licenses.gpl2Plus;
2018-12-30 21:36:32 +00:00
platforms = with platforms; unix;
maintainers = with maintainers; [ jchw ];
};
}