2025-05-13 18:49:38 -03:00

36 lines
652 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
lxqt-build-tools,
gitUpdater,
}:
stdenv.mkDerivation rec {
pname = "lxqt-themes";
version = "2.2.0";
src = fetchFromGitHub {
owner = "lxqt";
repo = pname;
rev = version;
hash = "sha256-oarj+byRfe9xHvtw80kifA2AspXHfigbuDwvi5xqrMQ=";
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-themes";
description = "Themes, graphics and icons for LXQt";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
teams = [ teams.lxqt ];
};
}