2017-04-01 16:06:19 +01:00
|
|
|
{ stdenv,
|
2018-05-19 07:53:23 +01:00
|
|
|
lib,
|
2018-10-11 10:45:42 +01:00
|
|
|
fetchFromGitHub,
|
2017-04-01 16:06:19 +01:00
|
|
|
rustPlatform,
|
2019-06-10 03:42:21 +01:00
|
|
|
|
2017-04-01 16:06:19 +01:00
|
|
|
cmake,
|
2019-06-10 03:42:21 +01:00
|
|
|
gzip,
|
2017-04-01 16:06:19 +01:00
|
|
|
makeWrapper,
|
2018-07-19 15:59:43 +01:00
|
|
|
ncurses,
|
2017-04-01 16:06:19 +01:00
|
|
|
pkgconfig,
|
2019-06-10 03:42:21 +01:00
|
|
|
python3,
|
|
|
|
|
|
|
|
expat,
|
2017-04-01 16:06:19 +01:00
|
|
|
fontconfig,
|
2019-06-10 03:42:21 +01:00
|
|
|
freetype,
|
|
|
|
libGL,
|
2017-04-01 16:06:19 +01:00
|
|
|
libX11,
|
|
|
|
libXcursor,
|
|
|
|
libXi,
|
2018-01-01 15:00:43 +00:00
|
|
|
libXrandr,
|
2019-06-10 03:42:21 +01:00
|
|
|
libXxf86vm,
|
|
|
|
libxcb,
|
2019-02-21 07:12:30 +00:00
|
|
|
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 }:
|
2017-04-01 16:06:19 +01:00
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
2017-07-29 12:41:04 +01:00
|
|
|
let
|
|
|
|
rpathLibs = [
|
|
|
|
expat
|
|
|
|
fontconfig
|
2019-06-10 03:42:21 +01:00
|
|
|
freetype
|
|
|
|
libGL
|
2017-07-29 12:41:04 +01:00
|
|
|
libX11
|
|
|
|
libXcursor
|
|
|
|
libXi
|
2019-06-10 03:42:21 +01:00
|
|
|
libXrandr
|
|
|
|
libXxf86vm
|
|
|
|
libxcb
|
2019-02-21 07:12:30 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
libxkbcommon
|
2019-06-10 03:42:21 +01:00
|
|
|
wayland
|
2017-07-29 12:41:04 +01:00
|
|
|
];
|
2017-11-13 16:26:44 +00:00
|
|
|
in buildRustPackage rec {
|
2019-04-08 23:30:18 +01:00
|
|
|
pname = "alacritty";
|
2019-11-25 19:34:18 +00:00
|
|
|
version = "0.4.0";
|
2017-04-01 16:06:19 +01:00
|
|
|
|
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}";
|
2019-11-25 19:34:18 +00:00
|
|
|
sha256 = "0adaqdbma6gskb2g14yscrgr9gch5wf2g2clchplv72c2qr1k427";
|
2017-04-01 16:06:19 +01:00
|
|
|
};
|
|
|
|
|
2019-11-25 19:34:18 +00:00
|
|
|
cargoSha256 = "1r267g8f986nxh8ms5yhp50qy1yl8gly2jr78p738qqc6frlxlhv";
|
2017-04-01 16:06:19 +01:00
|
|
|
|
2017-11-13 16:26:44 +00:00
|
|
|
nativeBuildInputs = [
|
2017-04-01 16:06:19 +01:00
|
|
|
cmake
|
2019-06-10 03:42:21 +01:00
|
|
|
gzip
|
2017-04-01 16:06:19 +01:00
|
|
|
makeWrapper
|
2018-07-19 15:59:43 +01:00
|
|
|
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 ];
|
2017-04-01 16:06:19 +01:00
|
|
|
|
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
|
|
|
|
2017-04-01 16:06:19 +01:00
|
|
|
installPhase = ''
|
2017-09-19 18:16:04 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-10-26 12:36:02 +01:00
|
|
|
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
|
|
|
|
2018-07-19 15:59:43 +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"
|
2018-07-19 15:59:43 +01:00
|
|
|
|
|
|
|
install -dm 755 "$terminfo/share/terminfo/a/"
|
2019-04-08 23:30:18 +01:00
|
|
|
tic -x -o "$terminfo/share/terminfo" extra/alacritty.info
|
2018-07-19 15:59:43 +01:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
|
|
|
|
2017-09-19 18:16:04 +01:00
|
|
|
runHook postInstall
|
2017-04-01 16:06:19 +01:00
|
|
|
'';
|
|
|
|
|
2017-07-29 12:41:04 +01:00
|
|
|
dontPatchELF = true;
|
2017-04-01 16:06:19 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "GPU-accelerated terminal emulator";
|
|
|
|
homepage = https://github.com/jwilm/alacritty;
|
|
|
|
license = with licenses; [ asl20 ];
|
2019-11-25 19:35:57 +00:00
|
|
|
maintainers = with maintainers; [ filalex77 mic92 ];
|
2019-07-01 22:35:08 +01:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
|
2017-04-01 16:06:19 +01:00
|
|
|
};
|
|
|
|
}
|