79 lines
1.4 KiB
Nix
79 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
expat,
|
|
freetype,
|
|
libxcb,
|
|
python3,
|
|
libiconv,
|
|
darwin,
|
|
fira-code,
|
|
fontconfig,
|
|
harfbuzz,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "silicon";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Aloxaf";
|
|
repo = "silicon";
|
|
rev = "v${version}";
|
|
hash = "sha256-lwwbjSXW5uonJNZTAqTK14Ib4QDOD4puxY2CsiJk4/Q=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"pathfinder_simd-0.5.4" = "sha256-RiivtlfdA44vQtFAzNQY9hu2FBwgq4aJ2hjQS8+Xucc=";
|
|
};
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
expat
|
|
freetype
|
|
fira-code
|
|
fontconfig
|
|
harfbuzz
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ libxcb ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin (
|
|
with darwin.apple_sdk.frameworks;
|
|
[
|
|
libiconv
|
|
AppKit
|
|
CoreText
|
|
Security
|
|
]
|
|
);
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [ python3 ];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Create beautiful image of your source code";
|
|
homepage = "https://github.com/Aloxaf/silicon";
|
|
license = with licenses; [
|
|
mit # or
|
|
asl20
|
|
];
|
|
maintainers = with maintainers; [
|
|
evanjs
|
|
_0x4A6F
|
|
];
|
|
mainProgram = "silicon";
|
|
};
|
|
}
|