Loading pkgs/development/lisp-modules/nix-cl.nix +6 −2 Original line number Diff line number Diff line Loading @@ -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; Loading pkgs/development/lisp-modules/packages.nix +7 −0 Original line number Diff line number Diff line Loading @@ -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 { Loading Loading
pkgs/development/lisp-modules/nix-cl.nix +6 −2 Original line number Diff line number Diff line Loading @@ -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; Loading
pkgs/development/lisp-modules/packages.nix +7 −0 Original line number Diff line number Diff line Loading @@ -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 { Loading