3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/alacritty/default.nix

125 lines
2.9 KiB
Nix
Raw Normal View History

{ stdenv,
2018-05-19 07:53:23 +01:00
lib,
fetchgit,
rustPlatform,
cmake,
makeWrapper,
ncurses,
expat,
pkgconfig,
freetype,
fontconfig,
libX11,
gzip,
libXcursor,
libXxf86vm,
libXi,
2018-01-01 15:00:43 +00:00
libXrandr,
libGL,
2018-05-19 07:53:23 +01:00
xclip,
# Darwin Frameworks
AppKit,
CoreFoundation,
CoreGraphics,
CoreServices,
CoreText,
Foundation,
OpenGL }:
with rustPlatform;
let
rpathLibs = [
expat
freetype
fontconfig
libX11
libXcursor
libXxf86vm
2018-01-01 15:00:43 +00:00
libXrandr
libGL
libXi
];
2018-05-19 07:53:23 +01:00
darwinFrameworks = [
AppKit
CoreFoundation
CoreGraphics
CoreServices
CoreText
Foundation
OpenGL
];
2017-11-13 16:26:44 +00:00
in buildRustPackage rec {
name = "alacritty-unstable-${version}";
version = "0.2.0";
# At the moment we cannot handle git dependencies in buildRustPackage.
# This fork only replaces rust-fontconfig/libfontconfig with a git submodules.
src = fetchgit {
url = https://github.com/Mic92/alacritty.git;
rev = "rev-${version}";
sha256 = "1c9izflacm693rwkxwakxgnpkvxwc8mqasr5p7x0ys6xg91h9sxn";
fetchSubmodules = true;
};
2018-08-30 07:58:09 +01:00
cargoSha256 = "1ijgkwv9ij4haig1h6n2b9xbhp5vahy9vp1sx72wxaaj9476msjx";
2017-11-13 16:26:44 +00:00
nativeBuildInputs = [
cmake
makeWrapper
pkgconfig
ncurses
gzip
2017-11-13 16:26:44 +00:00
];
2018-05-19 07:53:23 +01:00
buildInputs = rpathLibs
++ lib.optionals stdenv.isDarwin darwinFrameworks;
outputs = [ "out" "terminfo" ];
postPatch = ''
2017-07-31 23:45:26 +01:00
substituteInPlace copypasta/src/x11.rs \
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
'';
2018-05-19 12:23:47 +01:00
postBuild = lib.optionalString stdenv.isDarwin "make app";
2018-05-19 07:53:23 +01:00
installPhase = ''
runHook preInstall
install -D target/release/alacritty $out/bin/alacritty
2017-09-19 18:16:47 +01:00
2018-05-19 12:23:47 +01:00
'' + (if stdenv.isDarwin then ''
mkdir $out/Applications
cp -r target/release/osx/Alacritty.app $out/Applications/Alacritty.app
'' else ''
2018-07-23 11:35:40 +01:00
install -D alacritty.desktop $out/share/applications/alacritty.desktop
2018-05-19 12:23:47 +01:00
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
'') + ''
2018-05-19 07:53:23 +01:00
2018-07-07 16:19:23 +01:00
install -D alacritty-completions.zsh "$out/share/zsh/site-functions/_alacritty"
install -D alacritty-completions.bash "$out/etc/bash_completion.d/alacritty-completions.bash"
install -D alacritty-completions.fish "$out/share/fish/vendor_completions.d/alacritty.fish"
install -dm 755 "$out/share/man/man1"
gzip -c alacritty.man > "$out/share/man/man1/alacritty.1.gz"
install -dm 755 "$terminfo/share/terminfo/a/"
tic -x -o "$terminfo/share/terminfo" alacritty.info
mkdir -p $out/nix-support
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
runHook postInstall
'';
dontPatchELF = true;
meta = with stdenv.lib; {
description = "GPU-accelerated terminal emulator";
homepage = https://github.com/jwilm/alacritty;
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ mic92 ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}