summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hel.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index 5552c470..838b5535 100644
--- a/hel.nix
+++ b/hel.nix
@@ -58,7 +58,13 @@
58 ''; 58 '';
59 59
60 samsung-unified-linux-driver = pkgs.stdenv.lib.overrideDerivation pkgs.samsung-unified-linux-driver (oldAttrs: { 60 samsung-unified-linux-driver = pkgs.stdenv.lib.overrideDerivation pkgs.samsung-unified-linux-driver (oldAttrs: {
61 buildInputs = with pkgs; [ cups ghostscript ]; 61 buildInputs = with pkgs; [ cups makeWrapper ];
62 fixupPhase = ''
63 wrapProgram $out/lib/cups/filter/rastertosamsungspl \
64 --prefix PATH : ${pkgs.ghostscript}/bin
65 wrapProgram $out/lib/cups/filter/rastertosamsungsplc \
66 --prefix PATH : ${pkgs.ghostscript}/bin
67 '';
62 }); 68 });
63 }; 69 };
64 70