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

121 lines
2.7 KiB
Nix
Raw Normal View History

{ stdenv,
2018-05-19 07:53:23 +01:00
lib,
2018-10-11 10:45:42 +01:00
fetchFromGitHub,
rustPlatform,
2019-06-10 03:42:21 +01:00
cmake,
2019-06-10 03:42:21 +01:00
gzip,
makeWrapper,
ncurses,
pkgconfig,
2019-06-10 03:42:21 +01:00
python3,
expat,
fontconfig,
2019-06-10 03:42:21 +01:00
freetype,
libGL,
libX11,
libXcursor,
libXi,
2018-01-01 15:00:43 +00:00
libXrandr,
2019-06-10 03:42:21 +01:00
libXxf86vm,
libxcb,
libxkbcommon,
2019-06-10 03:42:21 +01:00
wayland,
2019-09-17 02:49:00 +01:00
xdg_utils,
2019-06-10 03:42:21 +01:00
2018-05-19 07:53:23 +01:00
# Darwin Frameworks
AppKit,
CoreGraphics,
CoreServices,
CoreText,
Foundation,
OpenGL }:
with rustPlatform;
let
rpathLibs = [
expat
fontconfig
2019-06-10 03:42:21 +01:00
freetype
libGL
libX11
libXcursor
libXi
2019-06-10 03:42:21 +01:00
libXrandr
libXxf86vm
libxcb
] ++ lib.optionals stdenv.isLinux [
libxkbcommon
2019-06-10 03:42:21 +01:00
wayland
];
2017-11-13 16:26:44 +00:00
in buildRustPackage rec {
2019-04-08 23:30:18 +01:00
pname = "alacritty";
version = "0.4.0";
2018-10-11 10:45:42 +01:00
src = fetchFromGitHub {
owner = "jwilm";
2019-04-08 23:30:18 +01:00
repo = pname;
2018-10-11 10:45:42 +01:00
rev = "v${version}";
sha256 = "0adaqdbma6gskb2g14yscrgr9gch5wf2g2clchplv72c2qr1k427";
};
cargoSha256 = "1r267g8f986nxh8ms5yhp50qy1yl8gly2jr78p738qqc6frlxlhv";
2017-11-13 16:26:44 +00:00
nativeBuildInputs = [
cmake
2019-06-10 03:42:21 +01:00
gzip
makeWrapper
ncurses
2019-06-10 03:42:21 +01:00
pkgconfig
python3
2017-11-13 16:26:44 +00:00
];
2018-05-19 07:53:23 +01:00
buildInputs = rpathLibs
2019-06-19 18:27:41 +01:00
++ lib.optionals stdenv.isDarwin [ AppKit CoreGraphics CoreServices CoreText Foundation OpenGL ];
2018-11-03 15:39:14 +00:00
outputs = [ "out" "terminfo" ];
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 ''
2019-04-08 23:30:18 +01:00
install -D extra/linux/alacritty.desktop -t $out/share/applications/
install -D extra/logo/alacritty-term.svg $out/share/icons/hicolor/scalable/apps/Alacritty.svg
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
2019-04-08 23:30:18 +01:00
install -D extra/completions/_alacritty -t "$out/share/zsh/site-functions/"
install -D extra/completions/alacritty.bash -t "$out/etc/bash_completion.d/"
install -D extra/completions/alacritty.fish -t "$out/share/fish/vendor_completions.d/"
2018-07-07 16:19:23 +01:00
install -dm 755 "$out/share/man/man1"
2019-04-08 23:30:18 +01:00
gzip -c extra/alacritty.man > "$out/share/man/man1/alacritty.1.gz"
install -dm 755 "$terminfo/share/terminfo/a/"
2019-04-08 23:30:18 +01:00
tic -x -o "$terminfo/share/terminfo" extra/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; [ filalex77 mic92 ];
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
};
}