Merge pull request #81443 from tricktron/iterm2-fix
iterm2: 3.0.14 -> 3.3.9 & fix build
This commit is contained in:
commit
4c945ee64a
1 changed files with 25 additions and 8 deletions
|
@ -1,31 +1,48 @@
|
||||||
{ stdenv, fetchFromGitHub }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
/*
|
||||||
|
This derivation is impure: it relies on an Xcode toolchain being installed
|
||||||
|
and available in the expected place. The values of sandboxProfile
|
||||||
|
are copied pretty directly from the MacVim derivation, which
|
||||||
|
is also impure. In order to build you at least need the `sandbox`
|
||||||
|
option set to `relaxed` or `false`.
|
||||||
|
*/
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "iterm2";
|
pname = "iterm2";
|
||||||
version = "3.0.14";
|
version = "3.3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "gnachman";
|
owner = "gnachman";
|
||||||
repo = "iTerm2";
|
repo = "iTerm2";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "03m0ja11w9910z96yi8fzq3436y8xl14q031rdb2w3sapjd54qrj";
|
sha256 = "06mq3gfjgy8jw2f3fzdsi3pbfkdijfzzlhlw6ixa5bfb4hbcgn5j";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./disable_updates.patch ];
|
patches = [ ./disable_updates.patch ];
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i -e 's/CODE_SIGN_IDENTITY = "Developer ID Application"/CODE_SIGN_IDENTITY = ""/g' ./iTerm2.xcodeproj/project.pbxproj
|
sed -i -e 's/CODE_SIGN_IDENTITY = "Developer ID Application"/CODE_SIGN_IDENTITY = ""/g' ./iTerm2.xcodeproj/project.pbxproj
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preConfigure = "LD=$CC";
|
preConfigure = "LD=$CC";
|
||||||
makeFlagsArray = ["Deployment"];
|
makeFlagsArray = ["Nix"];
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/Applications"
|
mkdir -p $out/Applications
|
||||||
mv "build/Deployment/iTerm2.app" "$out/Applications/iTerm.app"
|
mv Build/Products/Deployment/iTerm2.app $out/Applications/iTerm.app
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
sandboxProfile = ''
|
||||||
|
(allow file-read* file-write* process-exec mach-lookup)
|
||||||
|
; block homebrew dependencies
|
||||||
|
(deny file-read* file-write* process-exec mach-lookup (subpath "/usr/local") (with no-log))
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "A replacement for Terminal and the successor to iTerm";
|
description = "A replacement for Terminal and the successor to iTerm";
|
||||||
homepage = https://www.iterm2.com/;
|
homepage = https://www.iterm2.com/;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.darwin;
|
maintainers = with maintainers; [ tricktron ];
|
||||||
|
platforms = platforms.darwin;
|
||||||
|
hydraPlatforms = [];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue