mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-17 22:16:25 +00:00
8 lines
243 B
Nix
8 lines
243 B
Nix
{ pkgs, version, build }: pkgs.jetbrains.idea-ultimate.overrideAttrs(prev: {
|
|
version = "${version}";
|
|
build_number = "${build}";
|
|
src = builtins.fetchurl {
|
|
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
|
|
};
|
|
});
|