nixpkgs/pkgs/tools/misc/silicon/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

2020-01-30 00:28:24 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
2021-01-17 03:51:22 +00:00
, pkg-config
2020-01-30 00:28:24 +00:00
, cmake
, llvmPackages
, expat
, freetype
, libxcb
, python3
2021-05-18 11:47:50 +00:00
, libiconv
2020-01-30 00:28:24 +00:00
, AppKit
, CoreText
, Security
2021-05-18 21:53:34 +00:00
, fira-code
2020-01-30 00:28:24 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "silicon";
2021-06-06 06:45:22 +00:00
version = "0.4.2";
2020-01-30 00:28:24 +00:00
src = fetchFromGitHub {
owner = "Aloxaf";
repo = "silicon";
rev = "v${version}";
2021-06-06 06:45:22 +00:00
sha256 = "sha256-k+p8AEEL1BBJTmPc58QoIk7EOzu8QKdG00RQ58EN3bg=";
2020-01-30 00:28:24 +00:00
};
2021-06-06 06:45:22 +00:00
cargoSha256 = "sha256-vpegobS7lpRkt/oZePW9WggYeg0JXDte8fQP/bf7oAI=";
2020-01-30 00:28:24 +00:00
2021-05-18 21:53:34 +00:00
buildInputs = [ llvmPackages.libclang expat freetype fira-code ]
2020-01-30 00:28:24 +00:00
++ lib.optionals stdenv.isLinux [ libxcb ]
2021-05-18 11:47:50 +00:00
++ lib.optionals stdenv.isDarwin [ libiconv AppKit CoreText Security ];
2020-01-30 00:28:24 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ cmake pkg-config ]
2020-01-30 00:28:24 +00:00
++ lib.optionals stdenv.isLinux [ python3 ];
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
2020-01-30 00:28:24 +00:00
meta = with lib; {
description = "Create beautiful image of your source code";
2020-01-30 00:28:24 +00:00
homepage = "https://github.com/Aloxaf/silicon";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ evanjs ];
};
}