forked from mirrors/nixpkgs
lxqt-archiver: init at 0.0.96
This commit is contained in:
parent
38f828eb9c
commit
0f76ab69b6
|
@ -1973,6 +1973,11 @@
|
|||
github = "jbgi";
|
||||
name = "Jean-Baptiste Giraudeau";
|
||||
};
|
||||
jchw = {
|
||||
email = "johnwchadwick@gmail.com";
|
||||
github = "jchv";
|
||||
name = "John Chadwick";
|
||||
};
|
||||
jcumming = {
|
||||
email = "jack@mudshark.org";
|
||||
name = "Jack Cummings";
|
||||
|
|
|
@ -45,6 +45,7 @@ let
|
|||
qps = callPackage ./qps { };
|
||||
screengrab = callPackage ./screengrab { };
|
||||
qlipper = callPackage ./qlipper { };
|
||||
lxqt-archiver = callPackage ./lxqt-archiver { };
|
||||
|
||||
preRequisitePackages = [
|
||||
pkgs.gvfs # virtual file systems support for PCManFM-QT
|
||||
|
@ -93,6 +94,7 @@ let
|
|||
compton-conf
|
||||
obconf-qt
|
||||
lximage-qt
|
||||
lxqt-archiver
|
||||
|
||||
### QtDesktop project
|
||||
qps
|
||||
|
|
40
pkgs/desktops/lxqt/lxqt-archiver/default.nix
Normal file
40
pkgs/desktops/lxqt/lxqt-archiver/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, json-glib, libfm-qt, qtbase, qttools, qtx11extras }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-archiver";
|
||||
version = "0.0.96";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lxqt";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1vc9pzxrhznp65gdkzj3fzzivfqy712mwcxp3r25ar59d54alfpj";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkgconfig
|
||||
lxqt-build-tools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
json-glib
|
||||
libfm-qt
|
||||
qtbase
|
||||
qttools
|
||||
qtx11extras
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue