Skip to content

Commit

Permalink
Merge pull request #208834 from panicgh/fmt-repin-7-9
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Jan 23, 2023
2 parents b380d38 + fb9496a commit 9d351dc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
5 changes: 0 additions & 5 deletions pkgs/development/libraries/fmt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,6 @@ let
};
in
{
fmt_7 = generic {
version = "7.1.3";
sha256 = "08hyv73qp2ndbs0isk8pspsphdzz5qh8czl3wgyxy3mmif9xdg29";
};

fmt_8 = generic {
version = "8.1.1";
sha256 = "sha256-leb2800CwdZMJRWF5b1Y9ocK0jXpOX/nwo95icDf308=";
Expand Down
5 changes: 5 additions & 0 deletions pkgs/development/libraries/kompute/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ stdenv.mkDerivation rec {
url = "https://github.com/KomputeProject/kompute/commit/9a791b161dd58ca927fe090f65fa2b0e5e85e7ca.diff";
sha256 = "OtFTN8sgPlyiMmVzUnqzCkVMKj6DWxbCXtYwkRdEprY=";
})
(fetchpatch {
name = "enum-class-fix-for-fmt-8-x.patch";
url = "https://github.com/KomputeProject/kompute/commit/f731f2e55c7aaaa804111106c3e469f9a642d4eb.patch";
sha256 = "sha256-scTCYqkgKQnH27xzuY4FVbiwRuwBvChmLPPU7ZUrrL0=";
})
];

cmakeFlags = [
Expand Down
20 changes: 14 additions & 6 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2212,6 +2212,7 @@ with pkgs;

dolphin-emu-primehack = qt5.callPackage ../applications/emulators/dolphin-emu/primehack.nix {
inherit (darwin.apple_sdk.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL;
fmt = fmt_8;
};

### APPLICATIONS/EMULATORS/RETROARCH
Expand Down Expand Up @@ -5796,6 +5797,7 @@ with pkgs;
libceph = ceph.lib;
inherit (callPackages ../tools/filesystems/ceph {
lua = lua5_4;
fmt = fmt_8;
})
ceph
ceph-client;
Expand Down Expand Up @@ -19475,10 +19477,9 @@ with pkgs;

flyway = callPackage ../development/tools/flyway { };

inherit (callPackages ../development/libraries/fmt { }) fmt_7 fmt_8 fmt_9;
inherit (callPackages ../development/libraries/fmt { }) fmt_8 fmt_9;

fmt = fmt_7;
fmt_latest = fmt_9;
fmt = fmt_9;

fplll = callPackage ../development/libraries/fplll {};
fplll_20160331 = callPackage ../development/libraries/fplll/20160331.nix {};
Expand Down Expand Up @@ -31306,7 +31307,10 @@ with pkgs;

oroborus = callPackage ../applications/window-managers/oroborus {};

osm2pgsql = callPackage ../tools/misc/osm2pgsql { };
osm2pgsql = callPackage ../tools/misc/osm2pgsql {
# fmt_9 is not supported: https://github.com/openstreetmap/osm2pgsql/issues/1859
fmt = fmt_8;
};

ostinato = libsForQt5.callPackage ../applications/networking/ostinato { };

Expand Down Expand Up @@ -31637,7 +31641,9 @@ with pkgs;
boost = boost175;
};

openimageio = darwin.apple_sdk_11_0.callPackage ../development/libraries/openimageio { };
openimageio = darwin.apple_sdk_11_0.callPackage ../development/libraries/openimageio {
fmt = fmt_8;
};

openjump = callPackage ../applications/misc/openjump { };

Expand Down Expand Up @@ -37292,7 +37298,9 @@ with pkgs;

kompose = callPackage ../applications/networking/cluster/kompose { };

kompute = callPackage ../development/libraries/kompute { };
kompute = callPackage ../development/libraries/kompute {
fmt = fmt_8;
};

kontemplate = callPackage ../applications/networking/cluster/kontemplate { };

Expand Down

0 comments on commit 9d351dc

Please sign in to comment.