summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/lxqt-themes/default.nix
blob: 1cc56d62a06e8044ac39ac5a39c331c753f1fa2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, mkDerivation, fetchFromGitHub, cmake, lxqt-build-tools }:

mkDerivation rec {
  pname = "lxqt-themes";
  version = "0.14.0";

  src = fetchFromGitHub {
    owner = "lxqt";
    repo = pname;
    rev = version;
    sha256 = "09dkcgnf3lmfly8v90p6wjlj5rin83pbailvvpx2jr8a48a8zb9f";
  };

  nativeBuildInputs = [
    cmake
    lxqt-build-tools
  ];

  meta = with lib; {
    description = "Themes, graphics and icons for LXQt";
    homepage = "https://github.com/lxqt/lxqt-themes";
    license = licenses.lgpl21;
    platforms = platforms.linux;
    maintainers = with maintainers; [ romildo ];
  };
}