[Overlays] improve pycharm-professional-fhs logging

This commit is contained in:
Antoine Viallon 2023-05-26 19:56:09 +02:00
parent 92ab1d3a1e
commit 30d825feba
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -99,6 +99,7 @@ in
&& !(tryX.value.meta.insecure || tryX.value.meta.broken)
else false
;
interpreters = pkgs: filter (x: myIsDerivation x) (attrValues pkgs.pythonInterpreters);
unwrapped = final.jetbrains.pycharm-professional;
in prev.buildFHSUserEnv rec {
name = "pycharm-professional";
@ -111,7 +112,7 @@ in
jetbrains.pycharm-professional
]
++ filter (x: myIsDerivation x) (attrValues pythonInterpreters)
++ trace "Using the following interpreters: ${toString (interpreters pkgs)}" (interpreters pkgs)
);
# symlink shared assets, including icons and desktop entries
@ -124,7 +125,6 @@ in
};
})
];
aviallon.programs.allowUnfreeList = [
"unrar" "ark"
];