4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1.2 KiB
Nix
36 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 ];
|
|
};
|
|
}
|