summary refs log tree commit diff
path: root/pkgs/development/tools/wxformbuilder/default.nix
blob: 5c78d730d203ea305a3e0dc96099dce6c516806d (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
{ lib, stdenv
, fetchFromGitHub
, wxGTK31
, meson
, ninja
}:

stdenv.mkDerivation {
  pname = "wxFormBuilder";
  version = "unstable-2020-08-18";

  src = fetchFromGitHub {
    owner = "wxFormBuilder";
    repo = "wxFormBuilder";
    rev = "d053665cc33a79dd935b518b5e7aea6baf493c92";
    sha256 = "sha256-hTO7Fyp5ZWpq2CfIYEXB85oOkNrqr6Njfh8h0t9B6wU=";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [
    ninja
    meson
  ];

  buildInputs = [
    wxGTK31
  ];

  meta = with lib; {
    description = "RAD tool for wxWidgets GUI design";
    homepage = "https://github.com/wxFormBuilder/wxFormBuilder";
    license = licenses.gpl2;
    maintainers = with maintainers; [ matthuszagh ];
  };
}