Merge pull request #131250 from SuperSandro2000/SuperSandro2000-patch-5

aseprite.skia: cleanup, switch to pname + version, add meta
This commit is contained in:
Sandro 2021-07-24 19:20:51 +00:00 committed by GitHub
commit 6028010861
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,8 @@ let
});
in
stdenv.mkDerivation {
name = "skia-aseprite-m71";
pname = "skia";
version = "aseprite-m71";
src = fetchFromGitHub {
owner = "aseprite";
@ -73,4 +74,12 @@ stdenv.mkDerivation {
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;
};
}