1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/by-name/we/webfontkitgenerator/package.nix
2024-10-08 12:02:11 +02:00

72 lines
1.5 KiB
Nix

{ appstream-glib
, blueprint-compiler
, desktop-file-utils
, fetchFromGitHub
, gettext
, glib-networking
, gobject-introspection
, gtk4
, gtksourceview5
, lib
, libadwaita
, libsoup_3
, meson
, ninja
, pkg-config
, python3
, python3Packages
, stdenv
, wrapGAppsHook4
}:
stdenv.mkDerivation (finalAttrs: {
pname = "webfont-kit-generator";
version = "1.2.0";
src = fetchFromGitHub {
owner = "rafaelmardojai";
repo = "webfont-kit-generator";
rev = finalAttrs.version;
hash = "sha256-ZfyF1Didce88/HaLeMNTw0nGzj3EZnC7V9OzsN21L40=";
};
nativeBuildInputs = [
appstream-glib
blueprint-compiler
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; [
brotli
fonttools
pygobject3
]))
];
propagatedBuildInputs = [
python3Packages.pygobject3
python3Packages.brotli
];
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)";
mainProgram = "webfontkitgenerator";
homepage = "https://apps.gnome.org/app/com.rafaelmardojai.WebfontKitGenerator";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ benediktbroich ];
platforms = platforms.unix;
};
})