about summary refs log tree commit diff
path: root/pkgs/development/libraries/ldutils/default.nix
blob: 157c86ec553e1430f16508530e350c354913fe22 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  mkDerivation,
  lib,
  fetchFromGitLab,
  libsForQt5,
  cmake,
}:
mkDerivation rec {
  pname = "ldutils";
  version = "1.15";

  src = fetchFromGitLab {
    owner = "ldutils-projects";
    repo = pname;
    rev = "4fc416f694ce888c5bd4c4432a7730bb6260475c";
    #rev = "v_${version}";
    sha256 = "sha256-UMDayvz9RlcR4HVJNn7tN4FKbiKAFRSPaK0osA6OGTI=";
  };

  buildInputs = with libsForQt5.qt5; [
    qtcharts
    qtsvg
  ];

  nativeBuildInputs = [
    cmake
  ];

  qmakeFlags = ["ldutils.pro"];

  LDUTILS_LIB = placeholder "out";
  LDUTILS_INCLUDE = placeholder "out";

  meta = with lib; {
    description = "Headers and link library for other ldutils projects";
    homepage = "https://gitlab.com/ldutils-projects/ldutils";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [sohalt];
    platforms = platforms.linux;
  };
}