···1414 };15151616 meta = {1717+ description = "Automatically skips chapters based on title";1818+ longDescription = ''1919+ MPV script that skips chapters based on their title, categorized using regexes.2020+ The set of skipped categories can be configured globally, or by an auto-profile.2121+ '';1722 homepage = "https://github.com/po5/chapterskip";2323+ license = lib.licenses.unfree; # https://github.com/po5/chapterskip/issues/101824 maintainers = with lib.maintainers; [ nicoo ];1925 };2026}
+27
pkgs/by-name/fr/french-numbers/package.nix
···11+{ lib22+, stdenv33+, rustPlatform44+, fetchCrate55+}:66+77+rustPlatform.buildRustPackage rec {88+ pname = "french-numbers";99+ version = "1.2.0";1010+1111+ src = fetchCrate {1212+ inherit pname version;1313+ hash = "sha256-6mcqT0RZddHlzjyZzx0JGTfCRcQ2UQ3Qlmk0VVNzsnI=";1414+ };1515+1616+ cargoHash = "sha256-YmG+4837j7g3iK/nsP2P+WVcOqaPxKiS0jhcxkpEGXw=";1717+1818+ cargoBuildFlags = [ "--features=cli" ];1919+2020+ meta = with lib; {2121+ description = "Represent numbers in French language";2222+ homepage = "https://github.com/evenfurther/french-numbers";2323+ license = with licenses; [ asl20 /* or */ mit ];2424+ mainProgram = "french-numbers";2525+ maintainers = with maintainers; [ samueltardieu ];2626+ };2727+}
···258258 rm $out/host-linux-x64/libstdc++.so*259259 ''}260260 ${261261- lib.optionalString (lib.versionAtLeast version "11.8")261261+ lib.optionalString (lib.versionAtLeast version "11.8" && lib.versionOlder version "12")262262 # error: auto-patchelf could not satisfy dependency libtiff.so.5 wanted by /nix/store/.......-cudatoolkit-12.0.1/host-linux-x64/Plugins/imageformats/libqtiff.so263263 # we only ship libtiff.so.6, so let's use qt plugins built by Nix.264264 # TODO: don't copy, come up with a symlink-based "merge"265265 ''266266 rsync ${lib.getLib qt6Packages.qtimageformats}/lib/qt-6/plugins/ $out/host-linux-x64/Plugins/ -aP267267+ ''268268+ }269269+ ${270270+ lib.optionalString (lib.versionAtLeast version "12")271271+ # Use Qt plugins built by Nix.272272+ ''273273+ for qtlib in $out/host-linux-x64/Plugins/*/libq*.so; do274274+ qtdir=$(basename $(dirname $qtlib))275275+ filename=$(basename $qtlib)276276+ for qtpkgdir in ${lib.concatMapStringsSep " " (x: qt6Packages.${x}) ["qtbase" "qtimageformats" "qtsvg" "qtwayland"]}; do277277+ if [ -e $qtpkgdir/lib/qt-6/plugins/$qtdir/$filename ]; then278278+ ln -snf $qtpkgdir/lib/qt-6/plugins/$qtdir/$filename $qtlib279279+ fi280280+ done281281+ done267282 ''268283 }269284···351336 wrapProgram "$out/bin/$b" \352337 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"353338 done339339+ ${340340+ lib.optionalString (lib.versionAtLeast version "12")341341+ # Check we don't have any lurking vendored qt libraries that weren't342342+ # replaced during installPhase343343+ ''344344+ qtlibfiles=$(find $out -name "libq*.so" -type f)345345+ if [ ! -z "$qtlibfiles" ]; then346346+ echo "Found unexpected vendored Qt library files in $out" >&2347347+ echo $qtlibfiles >&2348348+ echo "These should be replaced with symlinks in installPhase" >&2349349+ exit 1350350+ fi351351+ ''352352+ }354353 '';355354356355 # cuda-gdb doesn't run correctly when not using sandboxing, so
···5566rustPlatform.buildRustPackage rec {77 pname = "automatic-timezoned";88- version = "1.0.131";88+ version = "1.0.137";991010 src = fetchFromGitHub {1111 owner = "maxbrunet";1212 repo = pname;1313 rev = "v${version}";1414- sha256 = "sha256-92OpvUt+0iN+UdEGjDdVCjUUlbuOjUgOjc+DGMUnx9U=";1414+ sha256 = "sha256-+/P+pt79kGIr399c3oTwqbvtMc1nJNRhBYmYJsLrmDg=";1515 };16161717- cargoHash = "sha256-FaQwxt3XcDOXlzcKEdMyE9TpmGykQOnJdxtM3EqMpfU=";1717+ cargoHash = "sha256-QCWlyuoogrU09JvP+X5If1KcYjaoL0zVhBexXwSqc1U=";18181919 meta = with lib; {2020 description = "Automatically update system timezone based on location";
+1
pkgs/top-level/aliases.nix
···373373 hepmc = throw "'hepmc' has been renamed to/replaced by 'hepmc2'"; # Converted to throw 2023-09-10374374 hip = throw "'hip' has been removed in favor of 'rocmPackages.clr'"; # Added 2023-10-08375375 hipcc = throw "'hipcc' has been replaced with 'rocmPackages.hipcc'"; # Added 2023-10-08376376+ hipchat = throw "'hipchat' has been discontinued since 2019; upstream recommends Slack."; # Added 2023-12-02376377 hipify = throw "'hipify' has been replaced with 'rocmPackages.hipify'"; # Added 2023-10-08377378 hipcub = throw "'hipcub' has been replaced with 'rocmPackages.hipcub'"; # Added 2023-10-08378379 hipsparse = throw "'hipsparse' has been replaced with 'rocmPackages.hipsparse'"; # Added 2023-10-08