Merge pull request #233307 from figsoda/fontfinder
This commit is contained in:
commit
06cb3f7989
59
pkgs/applications/misc/fontfinder/default.nix
Normal file
59
pkgs/applications/misc/fontfinder/default.nix
Normal file
@ -0,0 +1,59 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cargo
|
||||
, pkg-config
|
||||
, rustPlatform
|
||||
, rustc
|
||||
, wrapGAppsHook
|
||||
, gdk-pixbuf
|
||||
, gtk3
|
||||
, libsoup_3
|
||||
, webkitgtk_4_1
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fontfinder";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mmstick";
|
||||
repo = "fontfinder";
|
||||
rev = version;
|
||||
hash = "sha256-C4KqEdqToVnPXFPWvNkl/md9L2W4NxRd5jvZ4E7CtfA=";
|
||||
};
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit src;
|
||||
name = "${pname}-${version}";
|
||||
hash = "sha256-PXO8E41KHPNOR527gs2vM3J9JMG0PWi8Eg/13UCkr3U=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cargo
|
||||
pkg-config
|
||||
rustPlatform.cargoSetupHook
|
||||
rustc
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gdk-pixbuf
|
||||
gtk3
|
||||
libsoup_3
|
||||
webkitgtk_4_1
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GTK application for browsing and installing fonts from Google's font archive";
|
||||
homepage = "https://github.com/mmstick/fontfinder";
|
||||
changelog = "https://github.com/mmstick/fontfinder/releases/tag/${src.rev}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
mainProgram = "fontfinder-gtk";
|
||||
};
|
||||
}
|
@ -30401,6 +30401,8 @@ with pkgs;
|
||||
|
||||
font-manager = callPackage ../applications/misc/font-manager { };
|
||||
|
||||
fontfinder = callPackage ../applications/misc/fontfinder { };
|
||||
|
||||
fontpreview = callPackage ../applications/misc/fontpreview { };
|
||||
|
||||
fossil = callPackage ../applications/version-management/fossil {
|
||||
|
Loading…
Reference in New Issue
Block a user