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

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

53 lines
934 B
Nix
Raw Normal View History

{ lib
2024-04-18 18:21:40 +01:00
, stdenv
, fetchFromGitHub
, cmake
, kwindowsystem
, liblxqt
, libqtxdg
2024-04-18 18:21:40 +01:00
, lxqt-build-tools
, qtsvg
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater
}:
2016-10-03 22:51:17 +01:00
2024-04-18 18:21:40 +01:00
stdenv.mkDerivation rec {
2016-10-03 22:51:17 +01:00
pname = "lxqt-about";
2024-04-18 18:21:40 +01:00
version = "2.0.0";
2016-10-03 22:51:17 +01:00
2017-11-02 01:54:09 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:51:17 +01:00
repo = pname;
rev = version;
2024-04-18 18:21:40 +01:00
hash = "sha256-Y0OF4W0quQEet/QvntwGwFqaqJDDUchWYRh+OWZDS8w=";
2016-10-03 22:51:17 +01:00
};
2017-02-19 12:54:27 +00:00
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2023-11-05 20:23:49 +00:00
qttools
2024-04-18 18:21:40 +01:00
wrapQtAppsHook
2017-02-19 12:54:27 +00:00
];
2016-10-03 22:51:17 +01:00
buildInputs = [
2017-02-25 15:44:29 +00:00
kwindowsystem
liblxqt
libqtxdg
2024-04-18 18:21:40 +01:00
qtsvg
qtwayland
2016-10-03 22:51:17 +01:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-about";
description = "Dialogue window providing information about LXQt and the system it's running on";
mainProgram = "lxqt-about";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 14:52:15 +01:00
maintainers = teams.lxqt.members;
2016-10-03 22:51:17 +01:00
};
}