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

119 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv,
2018-05-19 06:53:23 +00:00
lib,
fetchgit,
rustPlatform,
cmake,
makeWrapper,
expat,
pkgconfig,
freetype,
fontconfig,
libX11,
gperf,
libXcursor,
libXxf86vm,
libXi,
2018-01-01 15:00:43 +00:00
libXrandr,
libGL,
2018-05-19 06:53:23 +00:00
xclip,
# Darwin Frameworks
AppKit,
CoreFoundation,
CoreGraphics,
CoreServices,
CoreText,
Foundation,
OpenGL }:
with rustPlatform;
let
rpathLibs = [
expat
freetype
fontconfig
libX11
libXcursor
libXxf86vm
2018-01-01 15:00:43 +00:00
libXrandr
libGL
libXi
];
2018-05-19 06:53:23 +00:00
darwinFrameworks = [
AppKit
CoreFoundation
CoreGraphics
CoreServices
CoreText
Foundation
OpenGL
];
2017-11-13 16:26:44 +00:00
in buildRustPackage rec {
name = "alacritty-unstable-${version}";
2018-04-24 23:49:13 +00:00
version = "2018-04-16";
# 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-04-24 23:49:13 +00:00
sha256 = "14qsfaij631pk0gxrhmp594f72v0z7kzymf4hnqv4k5w9xlxciwx";
fetchSubmodules = true;
};
2018-04-24 23:49:13 +00:00
cargoSha256 = "0gg28fbx0kisv7hqxgzqhv4z4ikk074djfjlj90nmmi4nddp017p";
2017-11-13 16:26:44 +00:00
nativeBuildInputs = [
cmake
makeWrapper
pkgconfig
2017-11-13 16:26:44 +00:00
];
2018-05-19 06:53:23 +00:00
buildInputs = rpathLibs
++ lib.optionals stdenv.isDarwin darwinFrameworks;
postPatch = ''
2017-07-31 22:45:26 +00:00
substituteInPlace copypasta/src/x11.rs \
--replace Command::new\(\"xclip\"\) Command::new\(\"${xclip}/bin/xclip\"\)
'';
2018-05-19 06:53:23 +00:00
postBuild = if stdenv.isDarwin
then ''
make app
''
else "";
patchRPathLibs = if stdenv.isDarwin then "" else ''
patchelf --set-rpath "${stdenv.lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
'';
copyDarwinApp = if stdenv.isDarwin
then ''
mkdir $out/Applications
cp -r target/release/osx/Alacritty.app $out/Applications/Alacritty.app
''
else "";
installPhase = ''
runHook preInstall
install -D target/release/alacritty $out/bin/alacritty
2018-05-19 06:53:23 +00:00
${patchRPathLibs}
2017-09-19 17:16:47 +00:00
install -D Alacritty.desktop $out/share/applications/alacritty.desktop
2018-05-19 06:53:23 +00:00
${copyDarwinApp}
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 ];
};
}