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

127 lines
2.8 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,
2020-01-09 16:18:13 +00:00
installShellFiles,
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";
2020-01-09 16:18:13 +00:00
version = "0.4.1";
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}";
2020-01-09 16:18:13 +00:00
sha256 = "05jcg33ifngpzw2hdhgb614j87ihhhlqgar0kky183rywg0dxikg";
};
cargoSha256 = "182j8ah67b2gw409vjfml3p41i00zh0klx9m8bwfkm64y2ki2bip";
2017-11-13 16:26:44 +00:00
nativeBuildInputs = [
cmake
2019-06-10 03:42:21 +01:00
gzip
2020-01-09 16:18:13 +00:00
installShellFiles
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" ];
2020-02-20 13:12:47 +00:00
postPatch = ''
substituteInPlace alacritty/src/config/mouse.rs \
--replace xdg-open ${xdg_utils}/bin/xdg-open
'';
2018-11-03 15:39:14 +00:00
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
2020-01-09 16:18:13 +00:00
installShellCompletion --zsh extra/completions/_alacritty
installShellCompletion --bash extra/completions/alacritty.bash
installShellCompletion --fish extra/completions/alacritty.fish
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/"
tic -xe alacritty,alacritty-direct -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";
2020-01-09 16:18:13 +00:00
homepage = "https://github.com/jwilm/alacritty";
license = licenses.asl20;
maintainers = with maintainers; [ filalex77 mic92 ];
2020-01-09 16:18:13 +00:00
platforms = platforms.unix;
};
}