2017-04-01 16:06:19 +01:00
|
|
|
{ stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
rustPlatform,
|
|
|
|
cmake,
|
|
|
|
makeWrapper,
|
|
|
|
expat,
|
|
|
|
pkgconfig,
|
|
|
|
freetype,
|
|
|
|
fontconfig,
|
|
|
|
libX11,
|
|
|
|
gperf,
|
|
|
|
libXcursor,
|
|
|
|
libXxf86vm,
|
|
|
|
libXi,
|
|
|
|
xclip }:
|
|
|
|
|
|
|
|
with rustPlatform;
|
|
|
|
|
2017-07-29 12:41:04 +01:00
|
|
|
let
|
|
|
|
rpathLibs = [
|
|
|
|
expat
|
|
|
|
freetype
|
|
|
|
fontconfig
|
|
|
|
libX11
|
|
|
|
libXcursor
|
|
|
|
libXxf86vm
|
|
|
|
libXi
|
|
|
|
];
|
|
|
|
in
|
|
|
|
|
2017-04-01 16:06:19 +01:00
|
|
|
buildRustPackage rec {
|
2017-10-19 04:05:04 +01:00
|
|
|
name = "alacritty-unstable-2017-10-17";
|
2017-04-01 16:06:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jwilm";
|
|
|
|
repo = "alacritty";
|
2017-10-19 04:05:04 +01:00
|
|
|
rev = "5ac42bb13bc68c5cbc44869dc9fc9ac19402a6e6";
|
|
|
|
sha256 = "0h37x12r33xwz9vf1n8y24c0ph5w17lhkpfi5q6lbpgidvbs6fyx";
|
2017-04-01 16:06:19 +01:00
|
|
|
};
|
|
|
|
|
2017-08-05 15:38:48 +01:00
|
|
|
cargoSha256 = "0w3j92kd27pny37pfvlv6qsnbb1lgphmfbhvvng0z96r2b1wjviz";
|
2017-04-01 16:06:19 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cmake
|
|
|
|
makeWrapper
|
|
|
|
pkgconfig
|
2017-07-29 12:41:04 +01:00
|
|
|
] ++ rpathLibs;
|
2017-04-01 16:06:19 +01:00
|
|
|
|
2017-09-19 18:16:04 +01:00
|
|
|
postPatch = ''
|
2017-07-31 23:45:26 +01:00
|
|
|
substituteInPlace copypasta/src/x11.rs \
|
|
|
|
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
|
|
|
|
'';
|
|
|
|
|
2017-04-01 16:06:19 +01:00
|
|
|
installPhase = ''
|
2017-09-19 18:16:04 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-04-01 16:06:19 +01:00
|
|
|
mkdir -p $out/bin
|
|
|
|
for f in $(find target/release -maxdepth 1 -type f); do
|
|
|
|
cp $f $out/bin
|
|
|
|
done;
|
2017-07-29 12:41:04 +01:00
|
|
|
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
|
2017-09-19 18:16:47 +01:00
|
|
|
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
cp Alacritty.desktop $out/share/applications/alacritty.desktop
|
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; {
|
2017-08-05 15:38:48 +01:00
|
|
|
broken = true;
|
2017-04-01 16:06:19 +01:00
|
|
|
description = "GPU-accelerated terminal emulator";
|
|
|
|
homepage = https://github.com/jwilm/alacritty;
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ mic92 ];
|
2017-07-29 20:43:20 +01:00
|
|
|
platforms = platforms.linux;
|
2017-04-01 16:06:19 +01:00
|
|
|
};
|
|
|
|
}
|