pyzotero-cli

This commit is contained in:
2026-02-06 16:06:50 +01:00
parent e74b485510
commit 387330c227
4 changed files with 85 additions and 1 deletions

View File

@@ -3,6 +3,10 @@ let
self = {
example-a = pkgs.callPackage ./example-a { };
example-b = pkgs.callPackage ./example-b { };
pyzotero = pkgs.callPackage ./pyzotero { };
pyzotero-cli = pkgs.callPackage ./pyzotero-cli {
pyzotero = self.pyzotero;
};
};
in
self // { default = self.example-a; }