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

47 lines
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
}:
rustPlatform.buildRustPackage rec {
pname = "silicon";
2021-03-09 21:22:30 +00:00
version = "0.4.1";
2020-01-30 00:28:24 +00:00
src = fetchFromGitHub {
owner = "Aloxaf";
repo = "silicon";
rev = "v${version}";
2021-03-09 21:22:30 +00:00
sha256 = "sha256-ci0gq4rOQHBmFPvhXZseIlwnqAWd06/qg/i/luhV79s=";
2020-01-30 00:28:24 +00:00
};
2021-03-09 21:22:30 +00:00
cargoSha256 = "sha256-1sekLS+jhMeFJcW7pH/X8t28//xA+L54u81uKOo1kHE=";
2020-01-30 00:28:24 +00:00
buildInputs = [ llvmPackages.libclang expat freetype ]
++ 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 ];
};
}