3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/silicon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 12:47:50 +01:00
, libiconv
2020-01-30 00:28:24 +00:00
, AppKit
, CoreText
, Security
2021-05-18 22:53:34 +01:00
, fira-code
2020-01-30 00:28:24 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "silicon";
2021-08-18 01:07:23 +01:00
version = "0.4.3";
2020-01-30 00:28:24 +00:00
src = fetchFromGitHub {
owner = "Aloxaf";
repo = "silicon";
rev = "v${version}";
2021-08-18 01:07:23 +01:00
sha256 = "sha256-yhs9BEMMFUtptd0cLsaUW02QZVhztvn8cB0nUqPnO+Y=";
2020-01-30 00:28:24 +00:00
};
2021-08-18 01:07:23 +01:00
cargoSha256 = "sha256-tj5HPE9EGC7JQ3dyeMPPI0/3r/idrShqfbpnVuaEtDk=";
2020-01-30 00:28:24 +00:00
2021-05-18 22:53:34 +01:00
buildInputs = [ llvmPackages.libclang expat freetype fira-code ]
2020-01-30 00:28:24 +00:00
++ lib.optionals stdenv.isLinux [ libxcb ]
2021-05-18 12:47:50 +01: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 ];
};
}