mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
dejavu-fonts environment collision
After splitting the DejaVuSans.ttf file into a multiple output in the dejavu_fonts Nixpkgs expression it is not possible to install in the user profile due to the collision. The attached patch makes a new package without the collision for user environment installing. From fae78903c6ce56eda70a1a9a6914c41d248b15e8 Mon Sep 17 00:00:00 2001 From: Karn Kallio <kkallio@skami.org> Date: Sat, 3 Sep 2016 14:09:36 -0400 Subject: [PATCH] dejavu-fonts : Prepare an environment package without collision.
This commit is contained in:
parent
dcaee87529
commit
a785cec01b
1 changed files with 6 additions and 1 deletions
|
@ -11927,8 +11927,13 @@ in
|
||||||
|
|
||||||
crimson = callPackage ../data/fonts/crimson {};
|
crimson = callPackage ../data/fonts/crimson {};
|
||||||
|
|
||||||
dejavu_fonts = callPackage ../data/fonts/dejavu-fonts {
|
dejavu_fonts = lowPrio (callPackage ../data/fonts/dejavu-fonts {
|
||||||
inherit (perlPackages) FontTTF;
|
inherit (perlPackages) FontTTF;
|
||||||
|
});
|
||||||
|
|
||||||
|
dejavu_fontsEnv = buildEnv {
|
||||||
|
name = "${dejavu_fonts.name}";
|
||||||
|
paths = [ dejavu_fonts.out ];
|
||||||
};
|
};
|
||||||
|
|
||||||
dina-font = callPackage ../data/fonts/dina { };
|
dina-font = callPackage ../data/fonts/dina { };
|
||||||
|
|
Loading…
Reference in a new issue