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 ];
|
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2020-01-30 00:28:24 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|