mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
eeaa0526a3
Also updates aseprite skia fork and skia deps, includes the following patches from AUR: - shared-libwebp.patch - shared-skia-deps.patch
81 lines
2.2 KiB
Nix
81 lines
2.2 KiB
Nix
{ stdenv, lib, fetchFromGitHub, fetchgit, python3, gn, ninja
|
|
, fontconfig, expat, icu58, libglvnd, libjpeg, libpng, libwebp, zlib
|
|
, mesa, libX11, harfbuzzFull
|
|
}:
|
|
|
|
let
|
|
# skia-deps.nix is generated by: ./skia-make-deps.sh 'angle2|dng_sdk|piex|sfntly'
|
|
depSrcs = import ./skia-deps.nix { inherit fetchgit; };
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "skia";
|
|
version = "aseprite-m102";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aseprite";
|
|
repo = "skia";
|
|
# latest commit from aseprite-m102 branch
|
|
rev = "861e4743af6d9bf6077ae6dda7274e5a136ee4e2";
|
|
hash = "sha256-IlZbalmHl549uDUfPG8hlzub8TLWhG0EsV6HVAPdsl0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ python3 gn ninja ];
|
|
|
|
buildInputs = [
|
|
fontconfig expat icu58 libglvnd libjpeg libpng libwebp zlib
|
|
mesa libX11 harfbuzzFull
|
|
];
|
|
|
|
preConfigure = with depSrcs; ''
|
|
mkdir -p third_party/externals
|
|
ln -s ${angle2} third_party/externals/angle2
|
|
ln -s ${dng_sdk} third_party/externals/dng_sdk
|
|
ln -s ${piex} third_party/externals/piex
|
|
ln -s ${sfntly} third_party/externals/sfntly
|
|
'';
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
gn gen out/Release --args="is_debug=false is_official_build=true extra_cflags=[\"-I${harfbuzzFull.dev}/include/harfbuzz\"]"
|
|
runHook postConfigure
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
ninja -C out/Release skia modules
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
|
|
# Glob will match all subdirs.
|
|
shopt -s globstar
|
|
|
|
# All these paths are used in some way when building aseprite.
|
|
cp -r --parents -t $out/ \
|
|
include/codec \
|
|
include/config \
|
|
include/core \
|
|
include/effects \
|
|
include/gpu \
|
|
include/private \
|
|
include/utils \
|
|
include/third_party/skcms/*.h \
|
|
out/Release/*.a \
|
|
src/gpu/**/*.h \
|
|
src/core/*.h \
|
|
modules/skshaper/include/*.h \
|
|
third_party/externals/angle2/include \
|
|
third_party/skcms/**/*.h
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Skia is a complete 2D graphic library for drawing Text, Geometries, and Images";
|
|
homepage = "https://skia.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|