Skip to content

Commit

Permalink
aegisub: 3.4.1 -> 3.4.2 (NixOS#373451)
Browse files Browse the repository at this point in the history
  • Loading branch information
wegank authored Jan 14, 2025
2 parents 4a2d913 + 8813a9d commit 629ab9d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
55 changes: 28 additions & 27 deletions pkgs/by-name/ae/aegisub/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
python3,
stdenv,
wrapGAppsHook3,
wxGTK,
wxGTK32,
zlib,
# Boolean guard flags
alsaSupport ? stdenv.hostPlatform.isLinux,
Expand All @@ -41,13 +41,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "aegisub";
version = "3.4.1";
version = "3.4.2";

src = fetchFromGitHub {
owner = "TypesettingTools";
repo = "aegisub";
tag = "v${finalAttrs.version}";
hash = "sha256-3yWtBuCwr1OPOg/nh2s8SFg62vt8zuBMMp0gfOZrjqk=";
hash = "sha256-ho+JG570FWbiYZ86CbCKa52j6UNyPIUh8fxpM3vVU/M=";
};

nativeBuildInputs = [
Expand All @@ -56,33 +56,34 @@ stdenv.mkDerivation (finalAttrs: {
ninja
pkg-config
python3
wxGTK
wxGTK32
wrapGAppsHook3
];

buildInputs = [
boost
expat
ffmpeg
ffms
fftw
fontconfig
freetype
fribidi
harfbuzz
icu
libGL
libass
libuchardet
wxGTK
zlib
]
++ lib.optionals alsaSupport [ alsa-lib ]
++ lib.optionals (openalSupport && !stdenv.hostPlatform.isDarwin) [ openal ]
++ lib.optionals portaudioSupport [ portaudio ]
++ lib.optionals pulseaudioSupport [ libpulseaudio ]
++ lib.optionals spellcheckSupport [ hunspell ]
++ lib.optionals (!useBundledLuaJIT) [ luajit ];
buildInputs =
[
boost
expat
ffmpeg
ffms
fftw
fontconfig
freetype
fribidi
harfbuzz
icu
libGL
libass
libuchardet
wxGTK32
zlib
]
++ lib.optionals alsaSupport [ alsa-lib ]
++ lib.optionals (openalSupport && !stdenv.hostPlatform.isDarwin) [ openal ]
++ lib.optionals portaudioSupport [ portaudio ]
++ lib.optionals pulseaudioSupport [ libpulseaudio ]
++ lib.optionals spellcheckSupport [ hunspell ]
++ lib.optionals (!useBundledLuaJIT) [ luajit ];

mesonFlags = [
(lib.mesonEnable "alsa" alsaSupport)
Expand Down
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,6 @@ with pkgs;

aegisub = callPackage ../by-name/ae/aegisub/package.nix ({
luajit = luajit.override { enable52Compat = true; };
wxGTK = wxGTK32;
} // (config.aegisub or {}));

acme-client = callPackage ../tools/networking/acme-client {
Expand Down

0 comments on commit 629ab9d

Please sign in to comment.