mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +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.
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenvNoCC
|
|
, lib
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "merriweather";
|
|
version = "2.005";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SorkinType";
|
|
repo = "Merriweather";
|
|
rev = "4fd88c9299009d1c1d201e7da3ff75cf1de5153a";
|
|
sha256 = "1ndycja2jzhcfbqbm0p6ka2zl1i1pdbkf0crw2lp3pi4k89wlm29";
|
|
};
|
|
|
|
# TODO: it would be nice to build this from scratch, but lots of
|
|
# Python dependencies to package (fontmake, gftools)
|
|
|
|
installPhase = ''
|
|
install -m444 -Dt $out/share/fonts/opentype/${pname} fonts/otf/*.otf
|
|
install -m444 -Dt $out/share/fonts/truetype/${pname} fonts/ttfs/*.ttf
|
|
install -m444 -Dt $out/share/fonts/woff/${pname} fonts/woff/*.woff
|
|
install -m444 -Dt $out/share/fonts/woff2/${pname} fonts/woff2/*.woff2
|
|
# TODO: install variable version?
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/SorkinType/Merriweather";
|
|
description = "Text face designed to be pleasant to read on screens";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ emily ];
|
|
};
|
|
}
|