nixpkgs/pkgs/data/fonts/fontconfig-penultimate/default.nix
Thomas Tuegel 4fd23d7346
fontconfig-penultimate: 0.3.4 -> 0.3.5
The NixOS option `useEmbeddedBitmaps` is now correctly respected.
2017-05-17 07:23:57 -05:00

27 lines
662 B
Nix

{ stdenv, fetchFromGitHub }:
let version = "0.3.5"; in
stdenv.mkDerivation {
name = "fontconfig-penultimate-${version}";
src = fetchFromGitHub {
owner = "ttuegel";
repo = "fontconfig-penultimate";
rev = version;
sha256 = "1xi664bs6n687s972nch87hi0iqkd6gr1l76zl58pymiw2132ks8";
};
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;
};
}