mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 18:14:42 +00:00
iterm2: init at 2.1.4
This commit is contained in:
parent
36cc45782b
commit
624dcaec78
24
pkgs/applications/misc/iterm2/default.nix
Normal file
24
pkgs/applications/misc/iterm2/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "iterm2-${version}";
|
||||||
|
version = "2.1.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://iterm2.com/downloads/stable/iTerm2-2_1_4.zip";
|
||||||
|
sha256 = "1kb4j1p1kxj9dcsd34709bm2870ffzpq6jig6q9ixp08g0zbhqhh";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out/Applications"
|
||||||
|
mv "$(pwd)" "$out/Applications/iTerm.app"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A replacement for Terminal and the successor to iTerm";
|
||||||
|
homepage = https://www.iterm2.com/;
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.darwin;
|
||||||
|
};
|
||||||
|
}
|
@ -16942,4 +16942,6 @@ in
|
|||||||
tomb = callPackage ../os-specific/linux/tomb {};
|
tomb = callPackage ../os-specific/linux/tomb {};
|
||||||
|
|
||||||
imatix_gsl = callPackage ../development/tools/imatix_gsl {};
|
imatix_gsl = callPackage ../development/tools/imatix_gsl {};
|
||||||
|
|
||||||
|
iterm2 = callPackage ../applications/misc/iterm2 {};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user