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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1 KiB
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 03:21:50 +01:00
, pkg-config
, lxqt-build-tools
, qtbase
, qttools
, qtsvg
, kwindowsystem
, liblxqt
, libqtxdg
, lxqt-globalkeys
, qtx11extras
, menu-cache
, muparser
, pcre
, lxqtUpdateScript
}:
2016-10-04 00:05:01 +02:00
mkDerivation rec {
2016-10-04 00:05:01 +02:00
pname = "lxqt-runner";
2022-04-16 21:16:31 +02:00
version = "1.1.0";
2016-10-04 00:05:01 +02:00
2017-11-02 02:58:43 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-04 00:05:01 +02:00
repo = pname;
rev = version;
2022-04-16 21:16:31 +02:00
sha256 = "hnuzoHKXqM6xEzN0jvHVjVWUXRxuwdhD3BiBfFMmZSk=";
2016-10-04 00:05:01 +02:00
};
2017-02-19 14:56:07 +01:00
nativeBuildInputs = [
cmake
2021-01-17 03:21:50 +01:00
pkg-config
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 14:56:07 +01:00
];
2016-10-04 00:05:01 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtsvg
2017-08-20 01:12:32 +02:00
qtx11extras
2017-02-25 16:44:29 +01:00
kwindowsystem
liblxqt
libqtxdg
lxqt-globalkeys
2016-10-04 00:05:01 +02:00
menu-cache
muparser
2017-11-02 02:58:43 +01:00
pcre
2016-10-04 00:05:01 +02:00
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-runner";
description = "Tool used to launch programs quickly by typing their names";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
2016-10-04 00:05:01 +02:00
};
}