nixpkgs/pkgs/applications/misc/alacritty/default.nix

123 lines
2.7 KiB
Nix
Raw Normal View History

{ stdenv,
2018-05-19 06:53:23 +00:00
lib,
2018-10-11 09:45:42 +00:00
fetchFromGitHub,
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 06:53:23 +00: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 06:53:23 +00:00
darwinFrameworks = [
AppKit
CoreFoundation
CoreGraphics
CoreServices
CoreText
Foundation
OpenGL
];
2017-11-13 16:26:44 +00:00
in buildRustPackage rec {
name = "alacritty-unstable-${version}";
2018-10-11 09:45:42 +00:00
version = "0.2.1";
2018-10-11 09:45:42 +00:00
src = fetchFromGitHub {
owner = "jwilm";
repo = "alacritty";
rev = "v${version}";
sha256 = "1402axwjz70gg6ylhhm82f1rl6xvxkr1qy0jx3r4r32vzfap1l67";
};
2018-10-11 09:45:42 +00:00
cargoSha256 = "0slcyn77svj0686g1vk7kgndzirpkba9jwwybgsdl755r53dswk0";
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 06:53:23 +00:00
buildInputs = rpathLibs
++ lib.optionals stdenv.isDarwin darwinFrameworks;
outputs = [ "out" "terminfo" ];
postPatch = ''
2017-07-31 22:45:26 +00:00
substituteInPlace copypasta/src/x11.rs \
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
'';
2018-05-19 11:23:47 +00:00
postBuild = lib.optionalString stdenv.isDarwin "make app";
2018-05-19 06:53:23 +00:00
installPhase = ''
runHook preInstall
install -D target/release/alacritty $out/bin/alacritty
2017-09-19 17:16:47 +00:00
2018-05-19 11:23:47 +00:00
'' + (if stdenv.isDarwin then ''
mkdir $out/Applications
cp -r target/release/osx/Alacritty.app $out/Applications/Alacritty.app
'' else ''
2018-07-23 10:35:40 +00:00
install -D alacritty.desktop $out/share/applications/alacritty.desktop
2018-05-19 11:23:47 +00:00
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
'') + ''
2018-05-19 06:53:23 +00:00
2018-07-07 15:19:23 +00: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" ];
};
}