about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/iterm2
AgeCommit message (Collapse)AuthorFilesLines
2024-06-20Merge pull request #313708 from sikmir/iterm2Thomas Gerbet1-2/+2
iterm2: 3.4.23 → 3.5.2
2024-06-16iterm2: 3.4.23 → 3.5.2Nikolay Korotkiy1-2/+2
2024-06-09treewide: Remove indefinite article from meta.descriptionAlexis Hildebrandt1-1/+1
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-01-01iterm2: 3.4.22 → 3.4.23Nikolay Korotkiy1-2/+2
2023-11-05iterm2: 3.4.21 → 3.4.22Nikolay Korotkiy1-2/+2
2023-10-07iterm2: 3.4.20 → 3.4.21Nikolay Korotkiy1-2/+2
2023-08-11iterm2: 3.4.19 → 3.4.20Nikolay Korotkiy1-2/+2
2023-01-17iterm2: 3.4.18 → 3.4.19Nikolay Korotkiy1-2/+2
2022-12-03iterm2: remove unused patchThomas Gerbet1-11/+0
2022-12-02iterm2: 3.4.17 -> 3.4.18Thomas Gerbet1-2/+2
Fixes CVE-2022-45872. Changelog: ``` - Change DECRQSS response to patch a security hole. - Fix crash when dragging a tab out of a window. - Improve crash reporting to include Objective-C exceptions, which Apple broke. ```
2022-11-08iterm2: 3.4.15 -> 3.4.17Tim Kleinschmidt1-2/+2
https://iterm2.com/downloads/stable/iTerm2-3_4_16.changelog https://iterm2.com/downloads/stable/iTerm2-3_4_17.changelog
2022-08-13iterm2: fix on macOS 13Randy Eckenrode1-0/+2
The fixup phase runs patch-shebangs, which modifies the shell integration scripts included the iTerm2.app bundle. This causes iTerm2 to be identified as damaged on macOS 13, which prevents it from running. This is due to changes in macOS 13 that checks signatures every time a notarized app is run on macOS 13. Since iTerm2 is using upstream’s build due to entitlements, it is notarized and must not be modified. See https://eclecticlight.co/2022/06/17/app-security-changes-coming-in-ventura/ for more details on the changes.
2022-03-04iterm2: fix buildJason Pickens1-30/+24
2021-11-28iterm2: 3.4.13 -> 3.4.14Randy Eckenrode1-2/+2
2021-11-25iterm2: 3.4.0 -> 3.4.13Randy Eckenrode1-4/+4
- Fixes build errors using Xcode 13.1.
2021-07-25iterm2: 3.3.9 -> 3.4.0 (#131314)Matthew Leach1-2/+2
Fixes: #131269
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-10-28A directory-category for terminal emulatorsAndersonTorres2-0/+59
This is a mostly cosmetical commit, in the sense it doesn't change the contents of any package, but reorganizes the overall Nixpkgs expressions. Terminal emulators are an ubiquitous tool for any Unix user; even the beginners are routinely familiarized to it. And, manifestly, there are many implementations of terminal emulators out there, from those traditionally made in C and C++ to those written in Haskell and Go. Terminal emulators deserve more highlight. This commit does that by creating a category for them.