nix: rename custom -> packages

This commit is contained in:
Primrose 2024-09-22 13:57:30 +02:00
parent 754882bf0d
commit afc2eea47a
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
24 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ isabelle, makeWrapper }:
isabelle.overrideAttrs (oa: {
buildInputs = (oa.buildInputs or [ ]) ++ [ makeWrapper ];
postFixup =
(oa.postFixup or "")
+ ''
wrapProgram $out/bin/isabelle \
--set _JAVA_AWT_WM_NONREPARENTING 1
'';
})