2022-03-06 06:53:45 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, perl
|
|
|
|
, freetype
|
|
|
|
, fontconfig
|
|
|
|
, libxkbcommon
|
|
|
|
, xcbutil
|
|
|
|
, libX11
|
|
|
|
, libXcursor
|
|
|
|
, libXrandr
|
|
|
|
, libXi
|
|
|
|
, vulkan-loader
|
|
|
|
, copyDesktopItems
|
|
|
|
, makeDesktopItem
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "lapce";
|
2022-04-11 07:29:25 +01:00
|
|
|
version = "0.0.12";
|
2022-03-06 06:53:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lapce";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-04-11 07:29:25 +01:00
|
|
|
sha256 = "sha256-ZFQjQ5+G0b0Fgg3+du/drt+62rC/TCNR5MIdJXAkTrE=";
|
2022-03-06 06:53:45 +00:00
|
|
|
};
|
|
|
|
|
2022-04-11 07:29:25 +01:00
|
|
|
cargoSha256 = "sha256-sMTootPsenaWzLLFImo6HWC1pcm2uFupPhVWsUJp1Ak=";
|
2022-03-06 06:53:45 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
perl
|
|
|
|
copyDesktopItems
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
freetype
|
|
|
|
fontconfig
|
|
|
|
libxkbcommon
|
|
|
|
xcbutil
|
|
|
|
libX11
|
|
|
|
libXcursor
|
|
|
|
libXrandr
|
|
|
|
libXi
|
|
|
|
vulkan-loader
|
|
|
|
];
|
|
|
|
|
|
|
|
# Add missing vulkan dependency to rpath
|
|
|
|
preFixup = ''
|
|
|
|
patchelf --add-needed ${vulkan-loader}/lib/libvulkan.so.1 $out/bin/lapce
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -Dm0644 $src/extra/images/logo.svg $out/share/icons/hicolor/scalable/apps/lapce.svg
|
|
|
|
'';
|
|
|
|
|
|
|
|
desktopItems = [ (makeDesktopItem {
|
|
|
|
name = "lapce";
|
|
|
|
exec = "lapce %F";
|
|
|
|
icon = "lapce";
|
|
|
|
desktopName = "Lapce";
|
|
|
|
comment = meta.description;
|
|
|
|
genericName = "Code Editor";
|
|
|
|
categories = [ "Development" "Utility" "TextEditor" ];
|
|
|
|
}) ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Lightning-fast and Powerful Code Editor written in Rust";
|
|
|
|
homepage = "https://github.com/lapce/lapce";
|
|
|
|
license = with licenses; [ asl20 ];
|
|
|
|
maintainers = with maintainers; [ elliot ];
|
|
|
|
broken = stdenv.isDarwin;
|
|
|
|
};
|
|
|
|
}
|