about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/lxqt/lxqt-themes/default.nix
blob: f464818814045d5dfee65c85556d5551b1b18330 (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 ];
  };
}