nixpkgs/pkgs/desktops/lxqt/qtxdg-tools/default.nix

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

43 lines
737 B
Nix
Raw Normal View History

2022-05-14 14:48:51 +00:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, libqtxdg
, lxqt-build-tools
, gitUpdater
2022-05-14 14:48:51 +00:00
}:
mkDerivation rec {
pname = "qtxdg-tools";
2023-11-05 20:23:51 +00:00
version = "3.12.0";
2022-05-14 14:48:51 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
2023-11-05 20:23:51 +00:00
hash = "sha256-3i5SVhEMHar09xoSfVCxJtPXeR81orcNR7pSIJImipQ=";
2022-05-14 14:48:51 +00:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
buildInputs = [
qtbase
libqtxdg
];
passthru.updateScript = gitUpdater { };
2022-05-14 14:48:51 +00:00
meta = with lib; {
homepage = "https://github.com/lxqt/qtxdg-tools";
description = "libqtxdg user tools";
mainProgram = "qtxdg-mat";
2022-05-14 14:48:51 +00:00
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = teams.lxqt.members;
};
}