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-09-04 16:19:02 +02:00
|
|
|
name = "alacritty-unstable-2017-09-02";
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jwilm";
|
|
|
|
repo = "alacritty";
|
2017-09-04 16:19:02 +02:00
|
|
|
rev = "22fa4260fc9210fbb5288090df79c92e7b3788e4";
|
|
|
|
sha256 = "0jjvvm0fm25p1h1rgfqlnhq4bwrjdxpb2pgnmpik9pl7qwy3q7s1";
|
2017-04-01 17:06:19 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 19:22:16 +02:00
|
|
|
depsSha256 = "19lrj4i6vzmf22r6xg99zcwvzjpiar8pqin1m2nvv78xzxx5yvgb";
|
2017-04-01 17:06:19 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmake
|
|
|
|
makeWrapper
|
|
|
|
pkgconfig
|
2017-07-29 13:41:04 +02:00
|
|
|
] ++ rpathLibs;
|
2017-04-01 17:06:19 +02:00
|
|
|
|
2017-08-01 00:45:26 +02:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace copypasta/src/x11.rs \
|
|
|
|
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|