nixpkgs/pkgs/applications/misc/meerk40t/default.nix
Martin Weinelt 86b27c138d
meerk40t-camera: extract to top-level
It confuses the update script, preventing automatic updates through
nixpkgs-update.
2022-11-13 13:59:00 +01:00

65 lines
1.3 KiB
Nix

{ lib
, fetchFromGitHub
, meerk40t-camera
, python3
, gtk3
, wrapGAppsHook
}:
let
inherit (python3.pkgs) buildPythonApplication buildPythonPackage fetchPypi;
in
buildPythonApplication rec {
pname = "MeerK40t";
version = "0.8.0031";
format = "setuptools";
src = fetchFromGitHub {
owner = "meerk40t";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-7Vc7Z+mxy+xRbUBeivkqVwO86ovZDo42M4G0ZD23vMk=";
};
nativeBuildInputs = [
wrapGAppsHook
];
# prevent double wrapping
dontWrapGApps = true;
propagatedBuildInputs = with python3.pkgs; [
ezdxf
meerk40t-camera
opencv4
pillow
pyserial
pyusb
setuptools
wxPython_4_2
];
preFixup = ''
gappsWrapperArgs+=(
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}"
)
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
checkInputs = with python3.pkgs; [
unittestCheckHook
];
preCheck = ''
export HOME=$TMPDIR
'';
meta = with lib; {
changelog = "https://github.com/meerk40t/meerk40t/releases/tag/${version}";
description = "MeerK40t LaserCutter Software";
homepage = "https://github.com/meerk40t/meerk40t";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}