about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-04-20 13:35:13 +0200
committerGitHub <noreply@github.com>2024-04-20 13:35:13 +0200
commit7cf21cf69fdb7d1ce3e2fef2434be86f30fd10ff (patch)
tree362aae700f68f3241aa7506e3eff9af99ec9e4ea /pkgs/applications
parent83e3a40067f39084bcdbfdca3a88e518c40f6ae1 (diff)
parent9e38de653afc5f5db2599769822bd4568c20cefa (diff)
Merge pull request #305501 from fabaff/shell-genie-refactor
shell-genie: refactor
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/shell-genie/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/applications/misc/shell-genie/default.nix b/pkgs/applications/misc/shell-genie/default.nix
index 63294e4048210..728a4aabed381 100644
--- a/pkgs/applications/misc/shell-genie/default.nix
+++ b/pkgs/applications/misc/shell-genie/default.nix
@@ -21,12 +21,15 @@ buildPythonPackage rec {
     "typer"
   ];
 
-  nativeBuildInputs = [
+  build-system = [
     poetry-core
+  ];
+
+  nativeBuildInputs = [
     pythonRelaxDepsHook
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     colorama
     openai
     pyperclip
@@ -44,9 +47,9 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "Describe your shell commands in natural language";
-    mainProgram = "shell-genie";
     homepage = "https://github.com/dylanjcastillo/shell-genie";
     license = licenses.mit;
     maintainers = with maintainers; [ onny ];
+    mainProgram = "shell-genie";
   };
 }