fontconfig-penultimate: init at 0.2

Also provides a NixOS module.
This commit is contained in:
Thomas Tuegel
2017-03-12 17:06:44 -05:00
parent 65592837b6
commit 354ea69ae4
4 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchFromGitHub }:
let version = "0.2"; in
stdenv.mkDerivation {
name = "fontconfig-penultimate-${version}";
src = fetchFromGitHub {
owner = "ttuegel";
repo = "fontconfig-penultimate";
rev = version;
sha256 = "106sjfmxdn2cachgsg0ky3wi676x6nd14y5fcl16n82kghi3d9yf";
};
installPhase = ''
mkdir -p $out/etc/fonts/conf.d
cp *.conf $out/etc/fonts/conf.d
'';
}