summary refs log tree commit diff
path: root/pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix
blob: f8db33bc5a4d6c128b0a1277096ece2b7e451e72 (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
{ stdenv, fetchFromGitHub, cmake, qt5 }:

stdenv.mkDerivation rec {
  name = "lxqt-build-tools-${version}";
  version = "0.3.2";

  src = fetchFromGitHub {
    owner = "lxde";
    repo = "lxqt-build-tools";
    rev = version;
    sha256 = "1awd70ifbbi67pklhldjw968c1fw1lcif9nh4qbrjqmlg1gn3kmv";
  };

  nativeBuildInputs = [ cmake qt5.qtbase ];

  meta = with stdenv.lib; {
    description = "Various packaging tools and scripts for LXQt applications";
    homepage = https://github.com/lxde/lxqt-build-tools;
    license = licenses.lgpl21;
    platforms = with platforms; unix;
    maintainers = with maintainers; [ romildo ];
  };
}