mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
Merge pull request #78795 from evanjs/silicon-init
silicon: init at 0.3.0
This commit is contained in:
commit
f36cf56380
46
pkgs/tools/misc/silicon/default.nix
Normal file
46
pkgs/tools/misc/silicon/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ 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 = "11b9i1aa36wc7mg2lsvmkiisl23mjkg02xcvlb7zdangwzbv13sq";
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -10562,6 +10562,10 @@ in
|
|||||||
|
|
||||||
sigrok-cli = callPackage ../development/tools/sigrok-cli { };
|
sigrok-cli = callPackage ../development/tools/sigrok-cli { };
|
||||||
|
|
||||||
|
silicon = callPackage ../tools/misc/silicon {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) AppKit CoreText Security;
|
||||||
|
};
|
||||||
|
|
||||||
simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { };
|
simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { };
|
||||||
|
|
||||||
slimerjs = callPackage ../development/tools/slimerjs {};
|
slimerjs = callPackage ../development/tools/slimerjs {};
|
||||||
|
Loading…
Reference in New Issue
Block a user