summaryrefslogtreecommitdiffstats
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-02-19 16:53:19 +0100
committerGitHub <noreply@github.com>2017-02-19 16:53:19 +0100
commit19798cb20518a83998c0b481b93e5a8f651be691 (patch)
treedb0bc841528f02565cbd3468fac9a8dd12b45fee /pkgs/misc
parentd31577cfd3fb6219f3713d2537fdaa49b70165bc (diff)
parent76da40e5a72008acc35383bf9b36113316ea202d (diff)
Merge pull request #22819 from makefu/pkgs/dymo/init
cups-dymo: init at 1.4.0.5
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/cups/drivers/dymo/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/misc/cups/drivers/dymo/default.nix b/pkgs/misc/cups/drivers/dymo/default.nix
new file mode 100644
index 000000000000..b2801c7ae671
--- /dev/null
+++ b/pkgs/misc/cups/drivers/dymo/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, lib, fetchurl, cups, ... }:
+
+stdenv.mkDerivation rec {
+ name = "cups-dymo-${version}";
+ version = "1.4.0.5";
+
+ # exposed version and 'real' version may differ
+ # in this case the download states '1.4.0' but the real version is '1.4.0.5'
+ # this has the potential to break future builds
+ dl-name = "dymo-cups-drivers-1.4.0";
+
+ src = fetchurl {
+ url = "http://download.dymo.com/dymo/Software/Download%20Drivers/Linux/Download/${dl-name}.tar.gz";
+ sha256 = "0wagsrz3q7yrkzb5ws0m5faq68rqnqfap9p98sgk5jl6x7krf1y6";
+ };
+
+ buildInputs = [ cups ];
+ makeFlags = [ "cupsfilterdir=$(out)/lib/cups/filter" "cupsmodeldir=$(out)/share/cups/model" ];
+
+ meta = {
+ description = "CUPS Linux drivers and SDK for DYMO printers";
+ homepage = "http://www.dymo.com/";
+ license = lib.licenses.gpl2;
+ maintainers = with lib.maintainers; [ makefu ];
+ };
+}