We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f165866 commit 090bc11Copy full SHA for 090bc11
pkgs/applications/editors/jetbrains/default.nix
@@ -46,6 +46,8 @@ let
46
description = meta.description + lib.optionalString meta.isOpenSource (if fromSource then " (built from source)" else " (patched binaries from jetbrains)");
47
maintainers = map (x: lib.maintainers."${x}") meta.maintainers;
48
license = if meta.isOpenSource then lib.licenses.asl20 else lib.licenses.unfree;
49
+ sourceProvenance = if fromSource then [ lib.sourceTypes.fromSource ] else
50
+ (if stdenv.isDarwin then [ lib.sourceTypes.binaryNativeCode ] else [ lib.sourceTypes.binaryBytecode ]);
51
};
52
53
mkJetBrainsProduct =
0 commit comments