nixpkgs/pkgs/desktops/lxqt/core/lxqt-about/default.nix

41 lines
902 B
Nix
Raw Normal View History

2017-02-19 13:54:27 +01:00
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }:
2016-10-03 23:51:17 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-about";
2017-02-19 13:54:27 +01:00
version = "0.11.1";
2016-10-03 23:51:17 +02:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:54:27 +01:00
sha256 = "1pa68pr0iwvh34lippagc8kxdfd0l2071m0vh7dnvfqbnwly29dk";
2016-10-03 23:51:17 +02:00
};
2017-02-19 13:54:27 +01:00
nativeBuildInputs = [
cmake
lxqt.lxqt-build-tools
];
2016-10-03 23:51:17 +02:00
buildInputs = [
qt5.qtx11extras
qt5.qttools
qt5.qtsvg
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
postPatch = lxqt.standardPatch;
meta = with stdenv.lib; {
description = "Dialogue window providing information about LXQt and the system it's running on";
homepage = https://github.com/lxde/lxqt-about;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 13:54:27 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:51:17 +02:00
};
}