summaryrefslogtreecommitdiff
path: root/custom
diff options
context:
space:
mode:
Diffstat (limited to 'custom')
-rw-r--r--custom/notify-user.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/notify-user.nix b/custom/notify-user.nix
index ddf78db0..99c6d8c1 100644
--- a/custom/notify-user.nix
+++ b/custom/notify-user.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
34 Notify.display_ $ Notify.appName "notify-${user}" <> Notify.summary summary <> Notify.body contents 34 Notify.display_ $ Notify.appName "notify-${user}" <> Notify.summary summary <> Notify.body contents
35 where 35 where
36 trim = dropWhileEnd isSpace . dropWhile isSpace 36 trim = dropWhileEnd isSpace . dropWhile isSpace
37 unQuote ('\'':xs) = init xs 37 unQuote ('\''':xs) = init xs
38 unQuote ('"':xs) = init xs 38 unQuote ('"':xs) = init xs
39 unQuote xs = xs 39 unQuote xs = xs
40 ''; }; 40 ''; };