2017-04-01 17:06:19 +02:00
|
|
|
{ stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
cmake,
|
|
|
|
makeWrapper,
|
|
|
|
expat,
|
|
|
|
pkgconfig,
|
|
|
|
freetype,
|
|
|
|
fontconfig,
|
|
|
|
libX11,
|
|
|
|
gperf,
|
|
|
|
libXcursor,
|
|
|
|
libXxf86vm,
|
|
|
|
libXi,
|
|
|
|
xclip }:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
2017-07-29 13:41:04 +02:00
|
|
|
let
|
|
|
|
rpathLibs = [
|
|
|
|
expat
|
|
|
|
freetype
|
|
|
|
fontconfig
|
|
|
|
libX11
|
|
|
|
libXcursor
|
|
|
|
libXxf86vm
|
|
|
|
libXi
|
|
|
|
];
|
|
|
|
in
|
|
|
|
|
2017-04-01 17:06:19 +02:00
|
|
|
buildRustPackage rec {
|
2017-07-25 13:36:20 +02:00
|
|
|
name = "alacritty-unstable-2017-07-25";
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jwilm";
|
|
|
|
repo = "alacritty";
|
2017-07-25 13:36:20 +02:00
|
|
|
rev = "49c73f6d55e5a681a0e0f836cd3e9fe6af30788f";
|
|
|
|
sha256 = "0h5hrb2g0fpc6xn94hmvxjj21cqbj4vgqkznvd64jl84qbyh1xjl";
|
2017-04-01 17:06:19 +02:00
|
|
|
};
|
|
|
|
|
2017-07-25 13:36:20 +02:00
|
|
|
depsSha256 = "1pbb0swgpsbd6x3avxz6fv3q31dg801li47jibz721a4n9c0rssx";
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmake
|
|
|
|
makeWrapper
|
|
|
|
xclip
|
|
|
|
pkgconfig
|
2017-07-29 13:41:04 +02:00
|
|
|
] ++ rpathLibs;
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
for f in $(find target/release -maxdepth 1 -type f); do
|
|
|
|
cp $f $out/bin
|
|
|
|
done;
|
2017-07-29 13:41:04 +02:00
|
|
|
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
|
2017-04-01 17:06:19 +02:00
|
|
|
'';
|
|
|
|
|
2017-07-29 13:41:04 +02:00
|
|
|
dontPatchELF = true;
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "GPU-accelerated terminal emulator";
|
|
|
|
homepage = https://github.com/jwilm/alacritty;
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2017-07-29 21:43:20 +02:00
|
|
|
platforms = platforms.linux;
|
2017-04-01 17:06:19 +02:00
|
|
|
};
|
|
|
|
}
|