Add cups-dymo package
This commit is contained in:
parent
88147ecc68
commit
65808fa92a
2 changed files with 53 additions and 0 deletions
34
packages/cups-dymo/default.nix
Normal file
34
packages/cups-dymo/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
autoreconfHook,
|
||||||
|
fetchgit,
|
||||||
|
boost,
|
||||||
|
cups,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
|
srcRoot = fetchgit {
|
||||||
|
url = "https://github.com/dymosoftware/Drivers.git";
|
||||||
|
hash = "sha256-3fRALvyGYVpDL0HyUnjDi+TDTX9yeQG6LfZtNuv42pY=";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cups-dymo";
|
||||||
|
version = "1.5.0";
|
||||||
|
|
||||||
|
src = "${srcRoot}/LW5xx_Linux";
|
||||||
|
|
||||||
|
nativeBuildInputs = [autoreconfHook boost cups];
|
||||||
|
makeFlags = [
|
||||||
|
"cupsfilterdir=$(out)/lib/cups/filter"
|
||||||
|
"cupsmodeldir=$(out)/share/cups/model"
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [./include-ctime.patch];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "CUPS Linux drivers and SDK for DYMO printers";
|
||||||
|
homepage = "https://github.com/dymosoftware/Drivers";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
};
|
||||||
|
}
|
19
packages/cups-dymo/include-ctime.patch
Normal file
19
packages/cups-dymo/include-ctime.patch
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
diff --git a/src/lm/LabelManagerLanguageMonitorV2.cpp b/src/lm/LabelManagerLanguageMonitorV2.cpp
|
||||||
|
index 4ad5b99..b48b30d 100644
|
||||||
|
--- a/src/lm/LabelManagerLanguageMonitorV2.cpp
|
||||||
|
+++ b/src/lm/LabelManagerLanguageMonitorV2.cpp
|
||||||
|
@@ -21,6 +21,7 @@
|
||||||
|
#include "LabelManagerLanguageMonitorV2.h"
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
+#include <ctime>
|
||||||
|
|
||||||
|
namespace DymoPrinterDriver
|
||||||
|
{
|
||||||
|
@@ -273,4 +274,4 @@ void CLabelManagerLanguageMonitorV2::ReprintPage()
|
||||||
|
_printEnvironment.WriteData(_pageData);
|
||||||
|
}
|
||||||
|
|
||||||
|
-};
|
||||||
|
\ No newline at end of file
|
||||||
|
+};
|
Loading…
Add table
Add a link
Reference in a new issue