1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/lxqt/core/lxqt-config/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2017-02-25 10:44:29 -05:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt-build-tools, standardPatch, qtbase, qtx11extras, qttools, qtsvg, kwindowsystem, libkscreen, liblxqt, libqtxdg, libpthreadstubs, xorg }:
2016-10-03 17:53:48 -04:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-config";
2017-02-19 08:05:14 -05:00
version = "0.11.1";
2016-10-03 17:53:48 -04:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 08:05:14 -05:00
sha256 = "0mqvv93djsw49n0gxpws3hrwimnyf9kzvc2vhjkzrjfxpabk2axx";
2016-10-03 17:53:48 -04:00
};
nativeBuildInputs = [
cmake
pkgconfig
2017-02-25 10:44:29 -05:00
lxqt-build-tools
2017-02-19 08:05:14 -05:00
];
2016-10-03 17:53:48 -04:00
buildInputs = [
2017-02-25 10:44:29 -05:00
qtbase
qtx11extras
qttools
qtsvg
kwindowsystem
libkscreen
liblxqt
libqtxdg
2016-10-03 17:53:48 -04:00
xorg.libpthreadstubs
xorg.libXdmcp
xorg.libXScrnSaver
xorg.libxcb
xorg.libXcursor
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
2017-02-25 10:44:29 -05:00
postPatch = standardPatch;
2016-10-03 17:53:48 -04:00
meta = with stdenv.lib; {
description = "Tools to configure LXQt and the underlying operating system";
homepage = https://github.com/lxde/lxqt-config;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 08:05:14 -05:00
maintainers = with maintainers; [ romildo ];
2016-10-03 17:53:48 -04:00
};
}