From 2d7f57ed0af3908fb55e17b639fcf614eacdae72 Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 30 May 2022 16:22:37 -0700 Subject: [PATCH] ...But now we've got :: instead of just : --- to-edn.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/to-edn.nix b/to-edn.nix index 7f4a4e8..17b47d6 100644 --- a/to-edn.nix +++ b/to-edn.nix @@ -22,7 +22,7 @@ let (if isAttrs ds then "{ ${ join-str - (mapAttrsToList (k: v: ":${parseKeyword k} ${toEDN v}") ds) + (mapAttrsToList (k: v: "${parseKeyword k} ${toEDN v}") ds) } }" else throw "unsupported type: ${builtins.typeOf ds}: ${ds}")));