Commit a490a01f authored by Kasper Gałkowski's avatar Kasper Gałkowski
Browse files

sbclPackages.cl-gobject-introspection: apply patch for recent SBCL

parent 2a5ff802
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -220,8 +220,12 @@ let
      javaLibs = lib.optionals isJVM args.javaLibs or [];
    in {
      pname = "${args.pkg.pname}-${args.pname}";
      src = if builtins.length (args.patches or []) > 0
            then pkgs.applyPatches { inherit (args) src patches; }
      src = if args?patches || args?postPatch
            then pkgs.applyPatches {
              inherit (args) src;
              patches = args.patches or [];
              postPatch = args.postPatch or "";
            }
            else args.src;
      patches = [];
      inherit javaLibs;
+7 −0
Original line number Diff line number Diff line
@@ -75,6 +75,13 @@ let
    };
  };

  cl-gobject-introspection = super.cl-gobject-introspection.overrideLispAttrs (o: {
    postPatch = ''
      substituteInPlace src/init.lisp \
        --replace sb-ext::set-floating-point-modes sb-int:set-floating-point-modes
    '';
  });

  jzon = super.com_dot_inuoe_dot_jzon;

  cl-notify = build-asdf-system {