mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +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.
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fontforge, python3Packages, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liberation-sans-narrow";
|
|
version = "1.07.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liberationfonts";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1qw554jbdnqkg6pjjl4cqkgsalq3398kzvww2naw30vykcz752bm";
|
|
};
|
|
|
|
buildInputs = [ fontforge python3Packages.fonttools python3 ];
|
|
|
|
installPhase = ''
|
|
find . -name '*Narrow*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} \;
|
|
install -m444 -Dt $out/doc/${pname}-${version} AUTHORS ChangeLog COPYING License.txt README.rst
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Liberation Sans Narrow Font Family is a replacement for Arial Narrow";
|
|
longDescription = ''
|
|
Liberation Sans Narrow is a font originally created by Ascender
|
|
Inc and licensed to Oracle Corporation under a GPLv2 license. It is
|
|
metrically compatible with the commonly used Arial Narrow fonts
|
|
on Microsoft systems. It is no longer distributed with the
|
|
latest versions of the Liberation Fonts, as Red Hat has changed the
|
|
license to the Open Font License.
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
homepage = "https://github.com/liberationfonts";
|
|
maintainers = [ maintainers.leenaars ];
|
|
};
|
|
}
|