From 2bedc77d8ea4b9f102e0105fe7d3d47f0d352a16 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Fri, 9 Dec 2022 00:52:28 -0500 Subject: flake: make garnix happy for now Signed-off-by: Xe Iaso --- flake.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index beace4f..c271984 100644 --- a/flake.nix +++ b/flake.nix @@ -87,7 +87,7 @@ ''; }; - frontend = rec { + frontend = let share-button = pkgs.deno2nix.mkBundled { pname = "xesite-frontend-mastodon-share-button"; inherit (bin) version; @@ -102,10 +102,9 @@ minify = true; }; - all = pkgs.symlinkJoin { - name = "xesite-frontend-${bin.version}"; - paths = [ share-button ]; - }; + in pkgs.symlinkJoin { + name = "xesite-frontend-${bin.version}"; + paths = [ share-button ]; }; static = pkgs.stdenv.mkDerivation { @@ -140,7 +139,7 @@ default = pkgs.symlinkJoin { name = "xesite-${bin.version}"; - paths = [ config posts static bin frontend.all resumePDF ]; + paths = [ config posts static bin frontend resumePDF ]; }; docker = pkgs.dockerTools.buildLayeredImage { -- cgit v1.2.3