nixpkgs/pkgs/by-name/te/tempora_lgc/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

42 lines
1.2 KiB
Nix

{lib, stdenv, fetchurl}:
let
srcs = [
(fetchurl {
url = "http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold-italic.otf";
sha256 = "1yfbi62j6gjmzglxz29m6x6lxqpxghcqjjh916qn8in74ba5v0gq";
})
(fetchurl {
url = "http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold.otf";
sha256 = "0bfbl1h9h1022km2rg1zwl9lpabhnwdsvzdp0bwmf0wbm62550cp";
})
(fetchurl {
url = "http://www.ttfotf.com/download-font/tempora-lgc-unicode-italic.otf";
sha256 = "10m9j4bvr6c4zp691wxm4hvzhph2zlfsxk1nmbsb9vn1i6vfgz04";
})
(fetchurl {
url = "http://www.ttfotf.com/download-font/tempora-lgc-unicode.otf";
sha256 = "0iwa8wyydcpjss6d1jy4jibqxpvzph4vmaxwwmndpsqy1fz64y9i";
})
];
nativeBuildInputs = [
];
in
stdenv.mkDerivation {
name = "tempora-lgc";
inherit nativeBuildInputs;
inherit srcs;
installPhase = ''
mkdir -p "$out/share/fonts/opentype/public"
cp ${toString srcs} "$out/share/fonts/opentype/public"
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "1kwj31cjgdirqvh6bxs4fnvvr1ppaz6z8w40kvhkivgs69jglmzw";
meta = {
description = "Tempora font";
license = lib.licenses.gpl2 ;
maintainers = [lib.maintainers.raskin];
};
}