3
0
Fork 0
forked from mirrors/nixpkgs

fontconfig-penultimate: 0.2 -> 0.2.1

Added package metadata, including license.
This commit is contained in:
Thomas Tuegel 2017-03-21 11:22:07 -05:00
parent 98624f4afc
commit 7299db431a
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub }:
let version = "0.2"; in
let version = "0.2.1"; in
stdenv.mkDerivation {
name = "fontconfig-penultimate-${version}";
@ -8,11 +8,19 @@ stdenv.mkDerivation {
owner = "ttuegel";
repo = "fontconfig-penultimate";
rev = version;
sha256 = "106sjfmxdn2cachgsg0ky3wi676x6nd14y5fcl16n82kghi3d9yf";
sha256 = "14arpalmpn7ig2myxslk4jdg6lm0cnmwsxy7zl0j7yr417k1kprf";
};
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;
};
}