Files
.hive/modules/tools/bulk-transcode/_shell.nix
2026-03-29 17:10:57 +02:00

8 lines
157 B
Nix

{pkgs ? import <nixpkgs> {}}: let
bin = pkgs.callPackage ./derivation.nix {};
in
pkgs.mkShell {
name = "bulk-transcode";
inputsFrom = [bin];
}