2017-08-10 20:43:49 +01:00
|
|
|
{ stdenv, fetchzip }:
|
2017-03-12 22:06:44 +00:00
|
|
|
|
2017-05-17 13:23:57 +01:00
|
|
|
let version = "0.3.5"; in
|
2017-08-10 20:43:49 +01:00
|
|
|
fetchzip {
|
2017-03-12 22:06:44 +00:00
|
|
|
name = "fontconfig-penultimate-${version}";
|
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
url = "https://github.com/ttuegel/fontconfig-penultimate/archive/${version}.zip";
|
2017-03-12 22:06:44 +00:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = ''
|
2017-03-12 22:06:44 +00:00
|
|
|
mkdir -p $out/etc/fonts/conf.d
|
2017-08-10 20:43:49 +01:00
|
|
|
unzip -j $downloadedFile \*.conf -d $out/etc/fonts/conf.d
|
2017-03-12 22:06:44 +00:00
|
|
|
'';
|
2017-03-21 16:22:07 +00:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
sha256 = "1gfgl7qimp76q4z0nv55vv57yfs4kscdr329np701k0xnhncwvrk";
|
|
|
|
|
2017-03-21 16:22:07 +00:00
|
|
|
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;
|
|
|
|
};
|
2017-03-12 22:06:44 +00:00
|
|
|
}
|