Merge pull request #85882 from matthuszagh/wxformbuilder
wxformbuilder: init at unstable-2020-08-18
This commit is contained in:
commit
bc103b4a6b
35
pkgs/development/tools/wxformbuilder/default.nix
Normal file
35
pkgs/development/tools/wxformbuilder/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ 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 stdenv.lib; {
|
||||||
|
description = "RAD tool for wxWidgets GUI design";
|
||||||
|
homepage = "https://github.com/wxFormBuilder/wxFormBuilder";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ matthuszagh ];
|
||||||
|
};
|
||||||
|
}
|
@ -15681,6 +15681,8 @@ in
|
|||||||
wt3
|
wt3
|
||||||
wt4;
|
wt4;
|
||||||
|
|
||||||
|
wxformbuilder = callPackage ../development/tools/wxformbuilder { };
|
||||||
|
|
||||||
wxGTK = wxGTK28;
|
wxGTK = wxGTK28;
|
||||||
|
|
||||||
wxGTK30 = wxGTK30-gtk2;
|
wxGTK30 = wxGTK30-gtk2;
|
||||||
|
Loading…
Reference in New Issue
Block a user