linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / fontfor / default.nix
blobc77809ece1edf4ec3144ad6ccb2115cbe2f44492
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , cmake
5 , pkg-config
6 , expat
7 , fontconfig
8 , freetype
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "fontfor";
13   version = "0.3.1";
15   src = fetchFromGitHub {
16     owner = "7sDream";
17     repo = "fontfor";
18     rev = "v${version}";
19     sha256 = "1b07hd41blwsnb91vh2ax9zigm4lh8n0i5man0cjmxhavvbfy12b";
20   };
22   nativeBuildInputs = [
23     cmake
24     pkg-config
25   ];
26   buildInputs = [
27     expat
28     fontconfig
29     freetype
30   ];
32   cargoSha256 = "194c4knjfb3pnpvw3zl1srwx3q1jp6z78vzln0q2mk5nf0a35yy0";
34   meta = with lib; {
35     description = "Find fonts which can show a specified character and preview them in browser";
36     homepage = "https://github.com/7sDream/fontfor";
37     license = with licenses; [ gpl3Plus ];
38     maintainers = with maintainers; [ shamilton ];
39     platforms = platforms.linux;
40   };