nixpkgs/pkgs/development/tools/fmbt/default.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python, autoreconfHook, pkg-config, makeWrapper
2018-03-11 14:44:20 +00:00
, flex
, gettext, libedit, glib, imagemagick, libxml2, boost, gnuplot, graphviz
, tesseract, gts, libXtst
}:
stdenv.mkDerivation rec {
2020-03-26 23:06:03 +00:00
version = "0.42";
pname = "fMBT";
2018-03-11 14:44:20 +00:00
src = fetchFromGitHub {
owner = "intel";
repo = "fMBT";
rev = "v${version}";
2020-03-26 23:06:03 +00:00
sha256 = "1jb9nb2mipc5cg99a80dny4m06vz2zral0q30fv75rz2cb6ja4zp";
2018-03-11 14:44:20 +00:00
};
nativeBuildInputs = [ autoreconfHook pkg-config flex makeWrapper
2018-03-11 14:44:20 +00:00
python.pkgs.wrapPython ];
buildInputs = [ python gettext libedit glib imagemagick libxml2 boost
gnuplot graphviz tesseract gts
2018-03-11 14:44:20 +00:00
];
propagatedBuildInputs = with python.pkgs; [
pyside pydbus pexpect pysideShiboken
];
preBuild = ''
export PYTHONPATH="$PYTHONPATH:$out/lib/python${python.pythonVersion}/site-packages"
export PATH="$PATH:$out/bin"
export LD_LIBRARY_PATH="${stdenv.lib.makeLibraryPath [libXtst]}"
'';
postInstall = ''
echo -e '#! ${stdenv.shell}\npython "$@"' > "$out/bin/fmbt-python"
chmod a+x "$out/bin/fmbt-python"
patchShebangs "$out/bin"
for i in "$out"/bin/*; do
wrapProgram "$i" --suffix "PATH" ":" "$PATH" \
--suffix "PYTHONPATH" ":" "$PYTHONPATH" \
--suffix "LD_LIBRARY_PATH" ":" "$LD_LIBRARY_PATH"
done
'';
meta = with stdenv.lib; {
description = "Free Model-Based Testing tool";
homepage = "https://github.com/intel/fMBT";
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ raskin ];
};
}