mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
102 lines
2.6 KiB
Nix
102 lines
2.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
mkJetBrainsProduct,
|
|
libdbm,
|
|
fsnotifier,
|
|
patchSharedLibs,
|
|
dotnetCorePackages,
|
|
python3,
|
|
openssl,
|
|
libxcrypt-legacy,
|
|
lttng-ust_2_12,
|
|
musl,
|
|
expat,
|
|
libxml2,
|
|
xz,
|
|
}:
|
|
let
|
|
system = stdenv.hostPlatform.system;
|
|
# update-script-start: urls
|
|
urls = {
|
|
x86_64-linux = {
|
|
url = "https://download.jetbrains.com/cpp/CLion-2026.1.4.tar.gz";
|
|
hash = "sha256-uOhFuDqVw3pxtqBvOQH+FpJTFrneaD/R0VcpJZRYD2o=";
|
|
};
|
|
aarch64-linux = {
|
|
url = "https://download.jetbrains.com/cpp/CLion-2026.1.4-aarch64.tar.gz";
|
|
hash = "sha256-I6IKQng4lNtRlQIq08K5bueqgKI/q1awX4EuRnyAnOk=";
|
|
};
|
|
x86_64-darwin = {
|
|
url = "https://download.jetbrains.com/cpp/CLion-2026.1.4.dmg";
|
|
hash = "sha256-AJt+K1zv4eyjdzubUeFGwB9mqzvOeb3ffA2k0MajPBs=";
|
|
};
|
|
aarch64-darwin = {
|
|
url = "https://download.jetbrains.com/cpp/CLion-2026.1.4-aarch64.dmg";
|
|
hash = "sha256-i3stX7dyRgSOJkFTMD9/hkw6e2mGNqn13S7X/vJ66RQ=";
|
|
};
|
|
};
|
|
# update-script-end: urls
|
|
in
|
|
(mkJetBrainsProduct {
|
|
inherit libdbm fsnotifier;
|
|
|
|
pname = "clion";
|
|
|
|
wmClass = "jetbrains-clion";
|
|
product = "CLion";
|
|
|
|
# update-script-start: version
|
|
version = "2026.1.4";
|
|
buildNumber = "261.26222.59";
|
|
# update-script-end: version
|
|
|
|
src = fetchurl (urls.${system} or (throw "Unsupported system: ${system}"));
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
python3
|
|
openssl
|
|
libxcrypt-legacy
|
|
lttng-ust_2_12
|
|
musl
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch) [
|
|
expat
|
|
libxml2
|
|
xz
|
|
];
|
|
|
|
# NOTE: meta attrs are used for the Linux desktop entries and may cause rebuilds when changed
|
|
meta = {
|
|
homepage = "https://www.jetbrains.com/clion/";
|
|
description = "C/C++ IDE from JetBrains";
|
|
longDescription = "Enhancing productivity for every C and C++ developer on Linux, macOS and Windows.";
|
|
maintainers = with lib.maintainers; [
|
|
mic92
|
|
tymscar
|
|
];
|
|
license = lib.licenses.unfree;
|
|
sourceProvenance =
|
|
if stdenv.hostPlatform.isDarwin then
|
|
[ lib.sourceTypes.binaryNativeCode ]
|
|
else
|
|
[ lib.sourceTypes.binaryBytecode ];
|
|
};
|
|
}).overrideAttrs
|
|
(attrs: {
|
|
postInstall =
|
|
(attrs.postInstall or "")
|
|
+ lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
for dir in $out/clion/plugins/clion-radler/DotFiles/linux-*; do
|
|
rm -rf $dir/dotnet
|
|
ln -s ${dotnetCorePackages.sdk_10_0-source}/share/dotnet $dir/dotnet
|
|
done
|
|
'';
|
|
|
|
postFixup = ''
|
|
${attrs.postFixup or ""}
|
|
${patchSharedLibs}
|
|
'';
|
|
})
|