Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

opusfile: add "dev" output

`opusfile` is a a popular game dependency via `SDL2_mixer`. Split it's
`dev` output to separate store path to reduce runtime closure size.

While at it amend games's include paths.

+2 -1
+1
pkgs/applications/audio/opusfile/default.nix
··· 11 11 nativeBuildInputs = [ pkg-config ]; 12 12 buildInputs = [ openssl libogg ]; 13 13 propagatedBuildInputs = [ libopus ]; 14 + outputs = [ "out" "dev" ]; 14 15 patches = [ ./include-multistream.patch ] 15 16 # fixes problem with openssl 1.1 dependency 16 17 # see https://github.com/xiph/opusfile/issues/13
+1 -1
pkgs/games/iortcw/sp.nix
··· 32 32 33 33 NIX_CFLAGS_COMPILE = [ 34 34 "-I${SDL2.dev}/include/SDL2" 35 - "-I${opusfile}/include/opus" 35 + "-I${opusfile.dev}/include/opus" 36 36 ]; 37 37 NIX_CFLAGS_LINK = [ "-lSDL2" ]; 38 38