From 8ae877b7ab4a58d6bd153846436237098681f8ed Mon Sep 17 00:00:00 2001 From: Emily Martins Date: Wed, 16 Feb 2022 00:18:16 +0100 Subject: [PATCH] flake: add 'defaultPackage' back --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 5897c9c..0c51115 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inputs.nixpkgs.follows = "plutarch/nixpkgs"; inputs.haskell-nix.follows = "plutarch/haskell-nix"; - # temporary fix for nix versions that have the transitive follows bug + # temporary fix for nix versions that have the transitive follows bug # see https://github.com/NixOS/nix/issues/6013 inputs.nixpkgs-2111 = { url = "github:NixOS/nixpkgs/nixpkgs-21.11-darwin"; }; @@ -107,5 +107,7 @@ touch $out ''); devShell = perSystem (system: self.flake.${system}.devShell); + defaultPackage = + perSystem (system: self.flake.${system}.packages."agora:lib:agora"); }; }