c292376438
Currently broken; see #79975 for details. Would also be fixed by #80153 eventually, but since we want to upgrade either way we might as well do so now. https://hydra.nixos.org/job/nixpkgs/trunk/silicon.x86_64-linux
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkgconfig
|
|
, cmake
|
|
, llvmPackages
|
|
, expat
|
|
, freetype
|
|
, libxcb
|
|
, python3
|
|
, AppKit
|
|
, CoreText
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "silicon";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Aloxaf";
|
|
repo = "silicon";
|
|
rev = "v${version}";
|
|
sha256 = "0j211qrkwgll7rm15dk4fcazmxkcqk2zah0qg2s3y0k7cx65bcxy";
|
|
};
|
|
|
|
cargoSha256 = "1i0y3x5rmg27gxrr2lv04sqq7qyiv1bnazfy24l5zgb4akvdg3r5";
|
|
|
|
buildInputs = [ llvmPackages.libclang expat freetype ]
|
|
++ lib.optionals stdenv.isLinux [ libxcb ]
|
|
++ lib.optionals stdenv.isDarwin [ AppKit CoreText Security ];
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ]
|
|
++ lib.optionals stdenv.isLinux [ python3 ];
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
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 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|