7c0afcd7c4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/obconf-qt/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/8sixxrkxdsqd1x37m32jlraa3193ahl6-obconf-qt-0.13.0/bin/obconf-qt had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 0.13.0 with grep in /nix/store/8sixxrkxdsqd1x37m32jlraa3193ahl6-obconf-qt-0.13.0 - directory tree listing: https://gist.github.com/db1190dab0d515449974bf0da5486e41 - du listing: https://gist.github.com/8ad4a03d3203c3dd52b7172d3e5432d6
43 lines
941 B
Nix
43 lines
941 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5, xorg, lxqt, openbox, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "obconf-qt";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxde";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0mixf35p7b563f77vnikk9b1wqhbdawp723sd30rfql76gkjwjcn";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkgconfig
|
|
lxqt.lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
pcre
|
|
qt5.qtbase
|
|
qt5.qttools
|
|
qt5.qtx11extras
|
|
xorg.libpthreadstubs
|
|
xorg.libXdmcp
|
|
xorg.libSM
|
|
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;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|