We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ee4f8c2 commit bba5b1cCopy full SHA for bba5b1c
nixos/tests/plasma5.nix
@@ -13,6 +13,21 @@ import ./make-test.nix ({ pkgs, ...} :
13
services.xserver.desktopManager.plasma5.enable = true;
14
services.xserver.desktopManager.default = "plasma5";
15
virtualisation.memorySize = 1024;
16
+
17
+ # fontconfig-penultimate-0.3.3 -> 0.3.4 broke OCR apparently, but no idea why.
18
+ nixpkgs.config.packageOverrides = superPkgs: {
19
+ fontconfig-penultimate = superPkgs.fontconfig-penultimate.overrideAttrs
20
+ (_attrs: rec {
21
+ version = "0.3.3";
22
+ name = "fontconfig-penultimate-${version}";
23
+ src = pkgs.fetchFromGitHub {
24
+ owner = "ttuegel";
25
+ repo = "fontconfig-penultimate";
26
+ rev = version;
27
+ sha256 = "0392lw31jps652dcjazln77ihb6bl7gk201gb7wb9i223avp86w9";
28
+ };
29
+ });
30
31
};
32
33
enableOCR = true;
0 commit comments