mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
54 lines
1.4 KiB
Nix
54 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, xorg
|
|
, libfaketime
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unifont";
|
|
version = "16.0.01";
|
|
|
|
otf = fetchurl {
|
|
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.otf";
|
|
hash = "sha256-6jmg5hTnSGSQI5xXWeGgzYb9SeM1xLCNL9E+MTFH8CI=";
|
|
};
|
|
|
|
pcf = fetchurl {
|
|
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.pcf.gz";
|
|
hash = "sha256-51YEW6CJPuLoNpsnr8AkNr7ZApnbThZyznZuBHDNmCU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ libfaketime xorg.fonttosfnt xorg.mkfontscale ];
|
|
|
|
dontUnpack = true;
|
|
|
|
buildPhase =
|
|
''
|
|
# convert pcf font to otb
|
|
faketime -f "1970-01-01 00:00:01" \
|
|
fonttosfnt -g 2 -m 2 -v -o "unifont.otb" "${pcf}"
|
|
'';
|
|
|
|
installPhase =
|
|
''
|
|
# install otb fonts
|
|
install -m 644 -D unifont.otb "$out/share/fonts/unifont.otb"
|
|
mkfontdir "$out/share/fonts"
|
|
|
|
# install pcf and otf fonts
|
|
install -m 644 -D ${pcf} $out/share/fonts/unifont.pcf.gz
|
|
install -m 644 -D ${otf} $out/share/fonts/opentype/unifont.otf
|
|
cd "$out/share/fonts"
|
|
mkfontdir
|
|
mkfontscale
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Unicode font for Base Multilingual Plane";
|
|
homepage = "https://unifoundry.com/unifont/";
|
|
|
|
# Basically GPL2+ with font exception.
|
|
license = "https://unifoundry.com/LICENSE.txt";
|
|
maintainers = [ maintainers.rycee ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|