2024-06-25 13:53:01 +00:00
# Override some packages and utilities in 'pkgs'
# and make them available globally via callPackage.
#
# For more details see:
# - https://nixos.wiki/wiki/Overlays
# - https://nixos.org/nixos/nix-pills/callpackage-design-pattern.html
final : prev : let
2024-01-19 15:23:26 +00:00
inherit ( prev ) config stdenv callPackage recurseIntoAttrs makeOverridable fetchurl lib writeShellScriptBin __splicedPackages ;
2024-06-25 13:53:01 +00:00
in rec {
linuxdeployqt = callPackage ./pkgs/linuxdeployqt/default.nix { } ;
# Copyied from d9424d2191d6439a276b69ae1fd0a800586135ca
# 2018-07-27 -> 2020-12-31
2024-01-19 15:23:26 +00:00
# TODO: override and upgrade
# Copy is uses because of initial complexity of package override (probably due to fuse override)
2024-06-25 13:53:01 +00:00
appimagekit = callPackage ./pkgs/appimagekit/default.nix { } ;
# Requirement from Makefile - 3.19
cmake_3_19 = prev . cmake . overrideAttrs ( attrs : rec {
version = " 3 . 1 9 . 7 " ;
2024-01-19 15:23:26 +00:00
src = fetchurl {
url = " ${ attrs . meta . homepage } f i l e s / v ${ lib . versions . majorMinor version } / c m a k e - ${ version } . t a r . g z " ;
2024-06-25 13:53:01 +00:00
# compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
sha256 = " s h a 2 5 6 - W K F f D V a g r 8 z D z F N x I 0 / O c / z G y P n b 1 3 X Y m O U Q u D F 1 W I 4 = " ;
} ;
} ) ;
2024-01-25 14:53:22 +00:00
# Copyied from bootstrap121 from 020300a756e75ea9ce86a8ab5ee259c31e28ed43
# - autoPatchelfHook is disabled
# - development/compilers/go/print-hashes.sh 1.21.11
2024-06-25 13:53:01 +00:00
# TODO: compile, not binary
2024-01-19 15:23:26 +00:00
# Binary is used because of initial complexity of both package override and copy from newer nixpkgs
2024-01-25 14:53:22 +00:00
go_1_21 = callPackage ./pkgs/go/bootstrap121.nix { } ;
2024-06-25 13:53:01 +00:00
2024-01-19 15:23:26 +00:00
# Fix for linuxdeployqt running ldd from nix with system shell
# ERROR: findDependencyInfo: "/bin/sh: /nix/store/HASH-glibc-2.31-74/lib/libc.so.6: version `GLIBC_2.33' not found (required by /bin/sh)\n/bin/sh: /nix/store/0c7c96gikmzv87i7lv3vq5s1cmfjd6zf-glibc-2.31-74/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/sh)"
# $ head $(which ldd)
# #! /bin/sh
lddWrapped = writeShellScriptBin " l d d " ''
2024-06-25 13:53:01 +00:00
" ${ final . bash } / b i n / s h " " ${ final . glibc . bin } / b i n / l d d " " $ @ "
'' ;
2024-01-19 15:23:26 +00:00
# Qt 5.15.8 copy from 76973ae3b30a88ea415f27ff53809ab8f452e2ec
# Edited:
# - temporary break Darwin support
# - remove unsupported testers, env., config.allowAliases
# - mkDerivation without finalAttrs
# - change fetch* parameter from hash to sha256, rmove fetchLFS
# - fix makeSetupHook
# - switch from makeScopeWithSplicing back to makeScope
# See diff for a full list of changes
qt515_8 = recurseIntoAttrs ( makeOverridable
( import ./pkgs/qt-5/5.15 ) {
inherit ( __splicedPackages )
newScope generateSplicesForMkScope lib fetchurl fetchpatch fetchgit fetchFromGitHub makeSetupHook makeWrapper
bison cups dconf harfbuzz libGL perl gtk3 python3
darwin buildPackages ;
inherit ( __splicedPackages . gst_all_1 ) gstreamer gst-plugins-base ;
inherit config stdenv ;
} ) ;
alsa-lib = prev . alsaLib ;
2024-06-25 13:53:01 +00:00
}