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

41 lines
944 B
Nix
Raw Normal View History

2017-02-25 16:44:29 +01:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, standardPatch, qtx11extras, qttools, qtsvg, kwindowsystem, liblxqt, libqtxdg }:
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
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 13:54:27 +01:00
];
2016-10-03 23:51:17 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtx11extras
qttools
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-03 23:51:17 +02:00
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
2017-02-25 16:44:29 +01:00
postPatch = standardPatch;
2016-10-03 23:51:17 +02:00
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
};
}