My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/qmlbox2d/default.nix

32 lines
883 B

{lib, stdenv, qtdeclarative, fetchFromGitHub, qmake }:
stdenv.mkDerivation {
pname = "qml-box2d";
version = "unstable-2018-04-06";
src = fetchFromGitHub {
owner = "qml-box2d";
repo = "qml-box2d";
sha256 = "0gb8limy6ck23z3k0k2j7c4c4s95p40f6lbzk4szq7fjnnw22kb7";
rev = "b7212d5640701f93f0cd88fbd3a32c619030ae62";
};
dontWrapQtApps = true;
nativeBuildInputs = [ qmake ];
buildInputs = [ qtdeclarative ];
patchPhase = ''
substituteInPlace box2d.pro \
--replace '$$[QT_INSTALL_QML]' "/$qtQmlPrefix/"
qmakeFlags="$qmakeFlags PREFIXSHORTCUT=$out"
'';
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = with lib; {
description = "A QML plugin for Box2D engine";
homepage = "https://github.com/qml-box2d/qml-box2d";
maintainers = [ maintainers.guibou ];
platforms = platforms.linux;
license = licenses.zlib;
};
}