3
0
Fork 0
forked from mirrors/nixpkgs
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.

42 lines
708 B
Nix
Raw Normal View History

2022-05-14 15:48:51 +01:00
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, libqtxdg
, lxqt-build-tools
, gitUpdater
2022-05-14 15:48:51 +01:00
}:
mkDerivation rec {
pname = "qtxdg-tools";
2022-11-09 13:11:12 +00:00
version = "3.10.0";
2022-05-14 15:48:51 +01:00
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
2022-11-09 13:11:12 +00:00
sha256 = "sha256-8jrb1Mdn9dhQzIEu6E0kz5F8eEnKAREwjXuypqfhw60=";
2022-05-14 15:48:51 +01:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
buildInputs = [
qtbase
libqtxdg
];
passthru.updateScript = gitUpdater { };
2022-05-14 15:48:51 +01:00
meta = with lib; {
homepage = "https://github.com/lxqt/qtxdg-tools";
description = "libqtxdg user tools";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = teams.lxqt.members;
};
}