Compare commits
No commits in common. "9fb7e53fe265a3d8e30a0bcd4d04a99301d5929c" and "88147ecc6829d2be55b5cd525258a9cfad3e3c13" have entirely different histories.
9fb7e53fe2
...
88147ecc68
4 changed files with 1 additions and 57 deletions
|
@ -11,9 +11,6 @@ with inputs;
|
||||||
# Yazi Gruvbox theme.
|
# Yazi Gruvbox theme.
|
||||||
yazi-flavour-gruvbox-dark = prev.pkgs.callPackage ./packages/yazi-flavour-gruvbox {};
|
yazi-flavour-gruvbox-dark = prev.pkgs.callPackage ./packages/yazi-flavour-gruvbox {};
|
||||||
|
|
||||||
# Dymo label printer drivers.
|
|
||||||
cups-dymo = prev.pkgs.callPackage ./packages/cups-dymo {};
|
|
||||||
|
|
||||||
# Latest FluffyChat.
|
# Latest FluffyChat.
|
||||||
fluffychat =
|
fluffychat =
|
||||||
(import nixpkgs-pr-fluffychat
|
(import nixpkgs-pr-fluffychat
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
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;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
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
|
|
||||||
+};
|
|
|
@ -135,7 +135,7 @@ with lib; {
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
services.printing = {
|
services.printing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
drivers = [pkgs.brlaser pkgs.cups-dymo];
|
drivers = [pkgs.brlaser];
|
||||||
};
|
};
|
||||||
|
|
||||||
# If you don't set this Wireguard won't work.
|
# If you don't set this Wireguard won't work.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue