4a7f99d55d
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
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib, 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 {
|
|
pname = "iterm2";
|
|
version = "3.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnachman";
|
|
repo = "iTerm2";
|
|
rev = "v${version}";
|
|
sha256 = "06mq3gfjgy8jw2f3fzdsi3pbfkdijfzzlhlw6ixa5bfb4hbcgn5j";
|
|
};
|
|
|
|
patches = [ ./disable_updates.patch ];
|
|
postPatch = ''
|
|
sed -i -e 's/CODE_SIGN_IDENTITY = "Developer ID Application"/CODE_SIGN_IDENTITY = ""/g' ./iTerm2.xcodeproj/project.pbxproj
|
|
'';
|
|
|
|
preConfigure = "LD=$CC";
|
|
makeFlagsArray = ["Nix"];
|
|
installPhase = ''
|
|
mkdir -p $out/Applications
|
|
mv Build/Products/Deployment/iTerm2.app $out/Applications/iTerm.app
|
|
'';
|
|
|
|
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 lib; {
|
|
description = "A replacement for Terminal and the successor to iTerm";
|
|
homepage = "https://www.iterm2.com/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ tricktron ];
|
|
platforms = platforms.darwin;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|