aseprite.skia: cleanup, switch to pname + version, add meta

This commit is contained in:
Sandro 2021-07-23 17:52:53 +02:00 committed by Sandro Jäckel
parent 10204ffee4
commit a9d2bdbae3
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

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;
};
}