summary refs log tree commit diff
path: root/pkgs/data/fonts/fontWrap/default.nix
blob: 927cc48575d08a5e99ee3ab01f2b95f0ce66128a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
args : with args;
	let localDefs = builderDefs.passthru.function {
		src =""; /* put a fetchurl here */
		buildInputs = [mkfontdir mkfontscale];
		configureFlags = [];
	};
	in with localDefs;
let
	doInstall = fullDepEntry ("
		ensureDir \$out/share/fonts/
		cd \$out/share/fonts
		for i in ${toString paths}; do
			find \$i -type f -exec ln -s '{}' . ';' ;
		done
		mkfontdir 
		mkfontscale
	") [minInit addInputs defEnsureDir] ;
in
stdenv.mkDerivation rec {
	name = "wrapped-font-dir";
	builder = writeScript (name + "-builder")
		(textClosure localDefs [ doInstall doForceShare doPropagate]);
	meta = {
		description = "
		Just a wrapper to create fonts.dir and fonts.scale .
";
		inherit src;
	};
}