forked from mirrors/nixpkgs
obconf-qt: init at 0.11.0
This commit is contained in:
parent
4a3c05b920
commit
a5bbe8970f
|
@ -57,6 +57,7 @@ in
|
|||
pkgs.lxqt.lxqt-runner
|
||||
pkgs.lxqt.lxqt-session
|
||||
pkgs.lxqt.lxqt-sudo
|
||||
pkgs.lxqt.obconf-qt
|
||||
pkgs.lxqt.pavucontrol-qt
|
||||
pkgs.lxqt.pcmanfm-qt
|
||||
pkgs.lxqt.qterminal
|
||||
|
|
|
@ -57,6 +57,7 @@ let
|
|||
### OPTIONAL
|
||||
qterminal = callPackage ./optional/qterminal { };
|
||||
compton-conf = callPackage ./optional/compton-conf { };
|
||||
obconf-qt = callPackage ./optional/obconf-qt { };
|
||||
|
||||
};
|
||||
|
||||
|
|
41
pkgs/desktops/lxqt/optional/obconf-qt/default.nix
Normal file
41
pkgs/desktops/lxqt/optional/obconf-qt/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, xorg, lxqt,
|
||||
openbox, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "obconf-qt";
|
||||
version = "0.11.0";
|
||||
|
||||
srcs = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1q3y4sc1kg3hw4869rx4g08y85rnvnxgk8rf8h6amkf5r5561iyk";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
buildInputs = [
|
||||
qt5.qtbase
|
||||
qt5.qttools
|
||||
qt5.qtx11extras
|
||||
qt5.qtsvg
|
||||
kde5.kwindowsystem
|
||||
lxqt.liblxqt
|
||||
lxqt.libqtxdg
|
||||
xorg.libpthreadstubs
|
||||
xorg.libXdmcp
|
||||
openbox
|
||||
hicolor_icon_theme
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The Qt port of obconf, the Openbox configuration tool";
|
||||
homepage = https://github.com/lxde/obconf-qt;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue