about summary refs log tree commit diff
path: root/pkgs/by-name/si/silicon/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/si/silicon/package.nix')
-rw-r--r--pkgs/by-name/si/silicon/package.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/by-name/si/silicon/package.nix b/pkgs/by-name/si/silicon/package.nix
new file mode 100644
index 000000000000..57a86a27213d
--- /dev/null
+++ b/pkgs/by-name/si/silicon/package.nix
@@ -0,0 +1,60 @@
+{ lib
+, stdenv
+, rustPlatform
+, fetchFromGitHub
+, fetchpatch
+, pkg-config
+, cmake
+, expat
+, freetype
+, libxcb
+, python3
+, libiconv
+, darwin
+, fira-code
+, fontconfig
+, harfbuzz
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "silicon";
+  version = "0.5.2";
+
+  src = fetchFromGitHub {
+    owner = "Aloxaf";
+    repo = "silicon";
+    rev = "v${version}";
+    hash = "sha256-fk1qaR7z9taOuNmjMCSdq7RybgV/3u7njU0Gehb98Lk=";
+  };
+
+  cargoLock = {
+    lockFile = ./Cargo.lock;
+    outputHashes = {
+      "pathfinder_simd-0.5.2" = "sha256-b9RuxtTRKJ9Bnh0AWkoInRVrK/a3KV/2DCbXhN63yF0=";
+    };
+  };
+
+  buildInputs = [ expat freetype fira-code fontconfig harfbuzz ]
+    ++ lib.optionals stdenv.isLinux [ libxcb ]
+    ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
+      libiconv
+      AppKit
+      CoreText
+      Security
+    ]);
+
+  nativeBuildInputs = [ cmake pkg-config rustPlatform.bindgenHook ]
+    ++ lib.optionals stdenv.isLinux [ python3 ];
+
+  preCheck = ''
+    export HOME=$TMPDIR
+  '';
+
+  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 _0x4A6F ];
+    mainProgram = "silicon";
+  };
+}