33 lines
1015 B
Nix
33 lines
1015 B
Nix
{ stdenv, meson, ninja, gettext, fetchurl
|
|
, pkgconfig, gtk3, glib, libxml2
|
|
, wrapGAppsHook, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnome-font-viewer-${version}";
|
|
version = "3.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-font-viewer/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "16mp22f255b8zqnnlqh25n6v79b9bd0gmli9ywqyapa0cfai09x3";
|
|
};
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript { packageName = "gnome-font-viewer"; attrPath = "gnome3.gnome-font-viewer"; };
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook libxml2 ];
|
|
buildInputs = [ gtk3 glib gnome3.gnome-desktop gnome3.defaultIconTheme ];
|
|
|
|
# Do not run meson-postinstall.sh
|
|
preConfigure = "sed -i '2,$ d' meson-postinstall.sh";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Program that can preview fonts and create thumbnails for fonts";
|
|
maintainers = gnome3.maintainers;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|