inkcut: update to 2.1.2

wasn't able to test with an actual cutter due to covid, but the GUI
starts correctly
This commit is contained in:
Arnout Engelen 2020-11-04 12:38:27 +01:00
parent 34ad166a83
commit ef2333fb03
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA

View file

@ -1,16 +1,20 @@
{ lib, python3Packages, fetchFromGitHub, wrapQtAppsHook }:
{ lib
, python3Packages
, fetchFromGitHub
, wrapQtAppsHook
}:
with python3Packages;
buildPythonApplication rec {
pname = "inkcut";
version = "2.1.1";
version = "2.1.2";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1c0mfdfy9iq4l683f3aa7cm7x2w9px83dyigc7655wvaq3bxi2rp";
sha256 = "1zn5i69f3kimcwdd2qkqd3hd1hq76a6i5wxxfb91ih2hj04vdbmx";
};
nativeBuildInputs = [ wrapQtAppsHook ];