···71717272- `relative`: Similar to using `git-diff`'s `--relative` flag, only keep changes inside the specified directory, making paths relative to it.
7373- `stripLen`: Remove the first `stripLen` components of pathnames in the patch.
7474+- `decode`: Pipe the downloaded data through this command before processing it as a patch.
7475- `extraPrefix`: Prefix pathnames by this string.
7576- `excludes`: Exclude files matching these patterns (applies after the above arguments).
7677- `includes`: Include only files matching these patterns (applies after the above arguments).
···3344mkDerivation rec {
55 pname = "g2o";
66- version = "20201223";
66+ version = "20230223";
7788 src = fetchFromGitHub {
99 owner = "RainerKuemmerle";
1010 repo = pname;
1111 rev = "${version}_git";
1212- sha256 = "sha256-Ik6uBz4Z4rc5+mPNdT8vlNZSBom4Tvt8Y6myBC/s0m8=";
1212+ sha256 = "sha256-J2Z3oRkyiinIfywBQvnq1Q8Z5WuzQXOVTZTwN8oivf0=";
1313 };
14141515 # Removes a reference to gcc that is only used in a debug message
···19192020 nativeBuildInputs = [ cmake makeWrapper ];
2121 buildInputs = [ eigen suitesparse blas lapack libGLU qtbase libqglviewer ];
2222-2323- # Silence noisy warning
2424- CXXFLAGS = "-Wno-deprecated-copy";
25222623 dontWrapQtApps = true;
2724
+1-1
pkgs/development/libraries/hipsparse/default.nix
···1717# This can also use cuSPARSE as a backend instead of rocSPARSE
1818stdenv.mkDerivation (finalAttrs: {
1919 pname = "hipsparse";
2020- version = "5.4.2";
2020+ version = "5.4.3";
21212222 outputs = [
2323 "out"
···5959 passthru.tests = {
6060 inherit knot-resolver;
6161 } // lib.optionalAttrs stdenv.isLinux {
6262- inherit (nixosTests) knot;
6262+ inherit (nixosTests) knot kea;
6363 # Some dependencies are very version-sensitive, so the might get dropped
6464 # or embedded after some update, even if the nixPackagers didn't intend to.
6565 # For non-linux I don't know a good replacement for `ldd`.
···3030 for i in texk/kpathsea/mktex*; do
3131 sed -i '/^mydir=/d' "$i"
3232 done
3333+3434+ # ST_NLINK_TRICK causes kpathsea to treat folders with no real subfolders
3535+ # as leaves, even if they contain symlinks to other folders; must be
3636+ # disabled to work correctly with the nix store", see section 5.3.6
3737+ # “Subdirectory expansion” of the kpathsea manual
3838+ # http://mirrors.ctan.org/systems/doc/kpathsea/kpathsea.pdf for more
3939+ # details
4040+ sed -i '/^#define ST_NLINK_TRICK/d' texk/kpathsea/config.h
3341 '';
34423543 configureFlags = [