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

45 lines
964 B
Nix
Raw Normal View History

2016-10-03 15:05:01 -07:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt,
menu-cache, muparser }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-runner";
2017-02-19 05:56:07 -08:00
version = "0.11.1";
2016-10-03 15:05:01 -07:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 05:56:07 -08:00
sha256 = "1nsxm0fplwrzz3vccd5fm82lpl4fqss6kv558zj44vzpsl13l954";
2016-10-03 15:05:01 -07:00
};
2017-02-19 05:56:07 -08:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-03 15:05:01 -07:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtsvg
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
2017-02-19 05:56:07 -08:00
lxqt.lxqt-common
2016-10-03 15:05:01 -07:00
lxqt.lxqt-globalkeys
menu-cache
muparser
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "Tool used to launch programs quickly by typing their names";
homepage = https://github.com/lxde/lxqt-runner;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 05:56:07 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 15:05:01 -07:00
};
}