Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bc9a9cc03f9b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 07e66484e679
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 16, 2019

  1. Copy the full SHA
    02fa463 View commit details
  2. Merge pull request #73486 from ahiaao/backport/fix-cl-mysql

    lispPackages.cl-mysql: fix build
    joachifm authored Nov 16, 2019
    Copy the full SHA
    07e6648 View commit details
Showing with 8 additions and 1 deletion.
  1. +8 −1 pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
9 changes: 8 additions & 1 deletion pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
Original file line number Diff line number Diff line change
@@ -77,7 +77,14 @@ $out/lib/common-lisp/query-fs"
};
};
cffi = addNativeLibs [pkgs.libffi];
cl-mysql = addNativeLibs [pkgs.mysql];
cl-mysql = x: {
propagatedBuildInputs = [pkgs.mysql.connector-c];
overrides = y: (x.overrides y) // {
prePatch = ((x.overrides y).prePatch or "") + ''
sed -i 's,libmysqlclient_r,${pkgs.mysql.connector-c}/lib/mysql/libmysqlclient_r,' system.lisp
'';
};
};
cl-ppcre-template = x: {
overrides = y: (x.overrides y) // {
postPatch = ''