From 15117c51a1b4b80c1881fecf87b4b452eeff4a17 Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Wed, 13 Nov 2024 12:12:40 -0500 Subject: [PATCH] make naming in flake.nix consistent --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 00c9676..08fa2a2 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ flake-utils.lib.eachDefaultSystem (system: let # see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples. - hiroPlotUtils = { poetry2nix, lib }: poetry2nix.mkPoetryApplication { + hiroplotutils = { poetry2nix, lib }: poetry2nix.mkPoetryApplication { projectDir = self; overrides = poetry2nix.overrides.withDefaults (final: super: lib.mapAttrs @@ -35,13 +35,13 @@ overlays = [ poetry2nix.overlays.default (final: _: { - hiroPlotUtils = final.callPackage hiroPlotUtils { }; + hiroplotutils = final.callPackage hiroplotutils { }; }) ]; }; in { - packages.default = pkgs.hiroPlotUtils; + packages.default = pkgs.hiroplotutils; devShells = { # Shell for app dependencies. #