{ stdenv, fetchFromGitHub }: let version = "0.3.4"; in stdenv.mkDerivation { name = "fontconfig-penultimate-${version}"; src = fetchFromGitHub { owner = "ttuegel"; repo = "fontconfig-penultimate"; rev = version; sha256 = "00vrw82dg1jyg65hhsg46rmg063rsls94hn6b8491mmvnzr0kgh2"; }; installPhase = '' mkdir -p $out/etc/fonts/conf.d cp *.conf $out/etc/fonts/conf.d ''; meta = with stdenv.lib; { homepage = https://github.com/ttuegel/fontconfig-penultimate; description = "Sensible defaults for Fontconfig"; license = licenses.asl20; maintainers = [ maintainers.ttuegel ]; platforms = platforms.all; }; }