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

41 lines
942 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, json-glib, libfm-qt, qtbase, qttools, qtx11extras }:
2018-12-30 21:36:32 +00:00
mkDerivation rec {
# pname = "lxqt-archiver";
pname = "lxqt-archiver-unstable";
version = "2019-09-15";
2018-12-30 21:36:32 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = "1e657b6a3e68c32f042d583872eca39a5d4b820f";
2018-12-30 21:36:32 +00:00
sha256 = "1vc9pzxrhznp65gdkzj3fzzivfqy712mwcxp3r25ar59d54alfpj";
};
nativeBuildInputs = [
cmake
pkgconfig
lxqt-build-tools
];
buildInputs = [
json-glib
libfm-qt
qtbase
qttools
qtx11extras
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
hardeningDisable = [ "format" ];
meta = with lib; {
2018-12-30 21:36:32 +00:00
description = "Archive tool for the LXQt desktop environment";
homepage = https://github.com/lxqt/lxqt-archiver/;
license = licenses.gpl2;
platforms = with platforms; unix;
maintainers = with maintainers; [ jchw ];
};
}