webfontkitgenerator: init at 1.0.3

This commit is contained in:
Benedikt Broich 2022-12-30 21:35:47 +01:00
parent ff37de0c4a
commit 8b9b0f56b3
No known key found for this signature in database
GPG key ID: 8A6003767BE95976
2 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,61 @@
{ appstream-glib
, desktop-file-utils
, fetchFromGitHub
, gettext
, glib-networking
, gobject-introspection
, gtk4
, gtksourceview5
, lib
, libadwaita
, libsoup_3
, meson
, ninja
, pkg-config
, python3
, stdenv
, wrapGAppsHook4
}:
stdenv.mkDerivation (finalAttrs: {
pname = "webfont-kit-generator";
version = "1.0.3";
src = fetchFromGitHub {
owner = "rafaelmardojai";
repo = "webfont-kit-generator";
rev = finalAttrs.version;
hash = "sha256-aD/1moWIiU4zpLTW+VHH9n/sj10vCZ8UzB2ey3mR0/k=";
};
nativeBuildInputs = [
appstream-glib
desktop-file-utils
gettext
gobject-introspection
gtk4 # For gtk4-update-icon-cache
meson
ninja
pkg-config
wrapGAppsHook4
];
buildInputs = [
glib-networking
gtk4
gtksourceview5
libadwaita
libsoup_3
(python3.withPackages (ps: with ps; [
fonttools
pygobject3
]))
];
meta = with lib; {
description = "Webfont Kit Generator is a simple utility that allows you to generate woff, woff2 and the necessary CSS boilerplate from non-web font formats (otf & ttf)";
homepage = "https://apps.gnome.org/app/com.rafaelmardojai.WebfontKitGenerator";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ benediktbroich ];
platforms = platforms.unix;
};
})

View file

@ -2229,6 +2229,8 @@ with pkgs;
citations = callPackage ../applications/misc/citations { };
webfontkitgenerator = callPackage ../applications/misc/webfontkitgenerator { };
citra-canary = callPackage ../applications/emulators/citra {
branch = "canary";
};