77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{ stdenv,
|
|
fetchgit,
|
|
rustPlatform,
|
|
cmake,
|
|
makeWrapper,
|
|
expat,
|
|
pkgconfig,
|
|
freetype,
|
|
fontconfig,
|
|
libX11,
|
|
gperf,
|
|
libXcursor,
|
|
libXxf86vm,
|
|
libXi,
|
|
xclip }:
|
|
|
|
with rustPlatform;
|
|
|
|
let
|
|
rpathLibs = [
|
|
expat
|
|
freetype
|
|
fontconfig
|
|
libX11
|
|
libXcursor
|
|
libXxf86vm
|
|
libXi
|
|
];
|
|
in buildRustPackage rec {
|
|
name = "alacritty-unstable-${version}";
|
|
version = "2017-11-12";
|
|
|
|
# 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 = "0096fzrfzj0a2n2n531r4b6c8rlfj5qc90d6i4iin5axalk3i1h4";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoSha256 = "10blch8pzk1zk3w27sbcszhcnq908xh1q55vqgy8iv5x47rpl02q";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeWrapper
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = rpathLibs;
|
|
|
|
postPatch = ''
|
|
substituteInPlace copypasta/src/x11.rs \
|
|
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D target/release/alacritty $out/bin/alacritty
|
|
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
|
|
|
|
install -D Alacritty.desktop $out/share/applications/alacritty.desktop
|
|
|
|
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 = platforms.linux;
|
|
};
|
|
}
|