nixpkgs/pkgs/applications/misc/alacritty/default.nix

80 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv,
fetchgit,
rustPlatform,
cmake,
makeWrapper,
expat,
pkgconfig,
freetype,
fontconfig,
libX11,
gperf,
libXcursor,
libXxf86vm,
libXi,
2018-01-01 15:00:43 +00:00
libXrandr,
xclip }:
with rustPlatform;
let
rpathLibs = [
expat
freetype
fontconfig
libX11
libXcursor
libXxf86vm
2018-01-01 15:00:43 +00:00
libXrandr
libXi
];
2017-11-13 16:26:44 +00:00
in buildRustPackage rec {
name = "alacritty-unstable-${version}";
2018-03-04 05:26:06 +00:00
version = "2018-03-04";
# 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}";
2018-03-04 05:26:06 +00:00
sha256 = "0pxnc6r75c7rwnsqc0idi4a60arpgchl1i8yppibhv0px5w11mwa";
fetchSubmodules = true;
};
2018-03-04 05:26:06 +00:00
cargoSha256 = "0q2yy9cldng8znkmhysgrwi43z2x7a8nb1bnxpy9z170q8ds0m0j";
2017-11-13 16:26:44 +00:00
nativeBuildInputs = [
cmake
makeWrapper
pkgconfig
2017-11-13 16:26:44 +00:00
];
buildInputs = rpathLibs;
postPatch = ''
2017-07-31 22:45:26 +00:00
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
2017-09-19 17:16:47 +00:00
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;
};
}