mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +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.
44 lines
1.5 KiB
Nix
44 lines
1.5 KiB
Nix
{ lib, stdenvNoCC, fetchzip }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "hack-font";
|
|
version = "3.003";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/chrissimpkins/Hack/releases/download/v${version}/Hack-v${version}-ttf.zip";
|
|
hash = "sha256-SxF4kYp9aL/9L9EUniquFadzWt/+PcvhUQOIOvCrFRM=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 *.ttf -t $out/share/fonts/truetype
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Typeface designed for source code";
|
|
longDescription = ''
|
|
Hack is hand groomed and optically balanced to be a workhorse face for
|
|
code. It has deep roots in the libre, open source typeface community and
|
|
expands upon the contributions of the Bitstream Vera & DejaVu projects.
|
|
The face has been re-designed with a larger glyph set, modifications of
|
|
the original glyph shapes, and meticulous attention to metrics.
|
|
'';
|
|
homepage = "https://sourcefoundry.org/hack/";
|
|
|
|
/*
|
|
"The font binaries are released under a license that permits unlimited
|
|
print, desktop, and web use for commercial and non-commercial
|
|
applications. It may be embedded and distributed in documents and
|
|
applications. The source is released in the widely supported UFO format
|
|
and may be modified to derive new typeface branches. The full text of
|
|
the license is available in LICENSE.md" (From the GitHub page)
|
|
*/
|
|
license = licenses.free;
|
|
maintainers = with maintainers; [ dywedir ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|