diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix index abac232..c5a2fe6 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,6 @@ python = pkgs.python3.withPackages (ps: [ ps.yt-dlp - blake3 ]); buildInputs = with pkgs; [ @@ -46,14 +45,13 @@ SDL2 ]; - yt = pkgs.callPackage ./package/package.nix {inherit blake3 tree-sitter-yts;}; - blake3 = pkgs.callPackage ./package/blake3/blake3.nix {}; + yt = pkgs.callPackage ./package/package.nix {inherit tree-sitter-yts;}; tree-sitter-yts = pkgs.callPackage ./tree-sitter-yts/package.nix {}; treefmtEval = import ./treefmt.nix {inherit treefmt-nix pkgs;}; in { packages = { - inherit yt blake3 tree-sitter-yts; + inherit yt tree-sitter-yts; default = self.packages.${system}.yt; }; |