Files
cohere-transcribe/flake.nix
T
2026-05-29 02:38:05 +08:00

32 lines
602 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
uv
python314
portaudio
cudaPackages.cudatoolkit
];
env = {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.cudaPackages.cudatoolkit
];
};
};
};
}