1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

lxqt-runner: 0.11.0 -> 0.11.1

This commit is contained in:
romildo 2017-02-19 10:56:07 -03:00
parent 349c252c58
commit 2e046f2bed

View file

@ -4,16 +4,20 @@ menu-cache, muparser }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-runner";
version = "0.11.0";
version = "0.11.1";
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
sha256 = "1gqs1b90km39dbg49g80x770i9jknni4h8y6ka2r1fga35amllkc";
sha256 = "1nsxm0fplwrzz3vccd5fm82lpl4fqss6kv558zj44vzpsl13l954";
};
nativeBuildInputs = [ cmake pkgconfig ];
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
buildInputs = [
qt5.qtbase
@ -22,6 +26,7 @@ stdenv.mkDerivation rec {
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
lxqt.lxqt-common
lxqt.lxqt-globalkeys
menu-cache
muparser
@ -33,7 +38,7 @@ stdenv.mkDerivation rec {
description = "Tool used to launch programs quickly by typing their names";
homepage = https://github.com/lxde/lxqt-runner;
license = licenses.lgpl21;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}