From 8d25e6136d9742146ff5211d95f517989741d0ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Tue, 18 Jul 2023 14:25:20 +0200 Subject: [PATCH] fix(flake): package.x86_64-linux.github-deploy flake output attribute The output attribute `package.x86_64-linux.github-deploy` was not a derivation. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 89fe2ac..4c833ec 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ with pkgs; { devShell = github-deploy.devShell; - packages.${name} = github-deploy; + packages.${name} = github-deploy.github-deploy; defaultPackage = github-deploy.defaultPackage; } );