Music transcoder!!
This commit is contained in:
		
						commit
						e48574b4ce
					
				
					 4 changed files with 413 additions and 0 deletions
				
			
		
							
								
								
									
										26
									
								
								flake.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								flake.nix
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,26 @@
 | 
			
		|||
{
 | 
			
		||||
  inputs = {
 | 
			
		||||
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
 | 
			
		||||
    flake-utils.url = "github:numtide/flake-utils";
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  outputs = { self, nixpkgs, flake-utils, ... }:
 | 
			
		||||
    flake-utils.lib.eachDefaultSystem (system:
 | 
			
		||||
      let
 | 
			
		||||
        pkgs = import nixpkgs {
 | 
			
		||||
          inherit system;
 | 
			
		||||
        };
 | 
			
		||||
      in
 | 
			
		||||
      {
 | 
			
		||||
        devShells.default = pkgs.mkShell rec {
 | 
			
		||||
          buildInputs = [
 | 
			
		||||
            pkgs.opusTools
 | 
			
		||||
            (pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
 | 
			
		||||
              black
 | 
			
		||||
              click
 | 
			
		||||
            ]))
 | 
			
		||||
          ];
 | 
			
		||||
        };
 | 
			
		||||
      }
 | 
			
		||||
    );
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue