diff options
| author | Xe Iaso <me@christine.website> | 2022-12-09 00:52:28 -0500 |
|---|---|---|
| committer | Xe Iaso <me@christine.website> | 2022-12-09 00:52:28 -0500 |
| commit | 2bedc77d8ea4b9f102e0105fe7d3d47f0d352a16 (patch) | |
| tree | 6bba849b3d01e11f436b0971699bfe30ff082b84 /flake.nix | |
| parent | 6cb81de348dda7883d63b5ed81282dc766664b07 (diff) | |
| download | xesite-2bedc77d8ea4b9f102e0105fe7d3d47f0d352a16.tar.xz xesite-2bedc77d8ea4b9f102e0105fe7d3d47f0d352a16.zip | |
flake: make garnix happy for now
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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 { |
