fcft: 0.4.3 → 2.2.6
2.2.6 resolves severe color fringes when using freetype's ClearType rendering (which is the default for NixOS) if subpixel antialiasing was used (for example if fuzzel is started without any alpha channels).
This commit is contained in:
parent
7acb961c67
commit
b6775261df
|
@ -1,16 +1,17 @@
|
|||
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, freetype, fontconfig, pixman, tllist }:
|
||||
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, scdoc
|
||||
,freetype, fontconfig, pixman, tllist }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fcft";
|
||||
version = "0.4.3";
|
||||
version = "2.2.6";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://codeberg.org/dnkl/fcft.git";
|
||||
rev = "${version}";
|
||||
sha256 = "1r2k5726k6ps8ml2s1vqmpiggqxzq9pbzs7m0dsxk29mh8vg0psj";
|
||||
sha256 = "06zywvvgrch9k4d07bir2sxddwsli2gzpvlvjfcwbrj3bw5x6j1b";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config meson ninja ];
|
||||
nativeBuildInputs = [ pkg-config meson ninja scdoc ];
|
||||
buildInputs = [ freetype fontconfig pixman tllist ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in New Issue