File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 description = "ffmpegthumbnailer" ;
33
44 inputs = {
5- nixpkgs . url = "github:nixos/nixpkgs/nixos-25.05 " ;
5+ nixpkgs . url = "github:nixos/nixpkgs/nixos-25.11 " ;
66 } ;
77
88 outputs =
181181 withX265 = false ;
182182 withXvid = false ;
183183 withSvtav1 = false ;
184+ # Some professional coedecs that we don't need
185+ withOpenapv = false ;
184186 # Disable dav1d for static macOS builds
185187 withDav1d = if ( isStatic && stdenv' . isDarwin ) then false else true ;
186188 } ) . overrideAttrs
297299 checks = forEachSupportedSystem (
298300 { pkgs , ... } :
299301 {
300- default = self . packages . ${ pkgs . system } . default ;
301- static = self . packages . ${ pkgs . system } . static ;
302+ default = self . packages . ${ pkgs . stdenv . hostPlatform . system } . default ;
303+ static = self . packages . ${ pkgs . stdenv . hostPlatform . system } . static ;
302304 }
303305 ) ;
304306
305307 devShells = forEachSupportedSystem (
306308 { pkgs , ... } :
307309 let
308- pkg = self . packages . ${ pkgs . system } . default ;
310+ pkg = self . packages . ${ pkgs . stdenv . hostPlatform . system } . default ;
309311 in
310312 {
311313 default =
316318 }
317319 {
318320 inputsFrom = [ pkg ] ;
321+ name = "dev" ;
319322 packages =
320323 with pkgs ;
321324 [
322325 # development tools
323326 clang-tools
324327 ]
325- ++ ( if pkgs . system == "aarch64-darwin" then [ ] else [ gdb ] ) ;
328+ ++ ( if pkgs . stdenv . hostPlatform . system == "aarch64-darwin" then [ ] else [ gdb ] ) ;
326329 } ;
327330 }
328331 ) ;
You can’t perform that action at this time.
0 commit comments