commit 51364c63539e2080d00680372dc59849a43914ae
parent 39f7633e1ed2056b222b30f4e95ff5f7924b4831
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Sun, 20 Mar 2022 16:11:50 +0300
Move iterm2 to nixpkgs
Diffstat:
2 files changed, 0 insertions(+), 31 deletions(-)
diff --git a/pkgs/applications/iterm2/bin.nix b/pkgs/applications/iterm2/bin.nix
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchurl, unzip }:
-
-stdenv.mkDerivation rec {
- pname = "iterm2-bin";
- version = "3.3.12";
-
- src = fetchurl {
- url = "https://iterm2.com/downloads/stable/iTerm2-${lib.replaceStrings [ "." ] [ "_" ] version}.zip";
- sha256 = "0rw165p9iypc11pr0mmwd1z4dvg0f3is2p8bv2sk30wyd4hba4b8";
- };
-
- unpackPhase = "${unzip}/bin/unzip $src";
-
- installPhase = ''
- mkdir -p $out/Applications
- cp -r iTerm.app $out/Applications
- /usr/bin/defaults write com.googlecode.iterm2 SUEnableAutomaticChecks -bool false
- '';
-
- preferLocalBuild = true;
-
- meta = with lib; {
- description = "A replacement for Terminal and the successor to iTerm";
- homepage = "https://iterm2.com/";
- license = licenses.gpl2;
- platforms = [ "x86_64-darwin" ];
- maintainers = [ maintainers.sikmir ];
- skip.ci = true;
- };
-}
diff --git a/pkgs/default.nix b/pkgs/default.nix
@@ -8,7 +8,6 @@ lib.makeScope newScope (
### APPLICATIONS
goldencheetah-bin = callPackage ./applications/goldencheetah/bin.nix { };
- iterm2-bin = callPackage ./applications/iterm2/bin.nix { };
klogg = libsForQt5.callPackage ./applications/misc/klogg { };
klogg-bin = callPackage ./applications/misc/klogg/bin.nix { };
macpass-bin = callPackage ./applications/macpass/bin.nix { };