Files
.hive/packages/bulk-transcode/default.nix

10 lines
292 B
Nix

{
flake.overlays.bulk-transcode = final: prev: {
bulk-transcode = import ./overlay.nix {inherit final prev;};
};
perSystem = {pkgs, ...}: {
packages.bulk-transcode = pkgs.callPackage ./derivation.nix {};
devShells.bulk-transcode = import ./shell.nix {inherit pkgs;};
};
}