mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +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.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, stdenvNoCC, fetchzip }:
|
||
|
||
stdenvNoCC.mkDerivation rec {
|
||
pname = "JuliaMono-ttf";
|
||
version = "0.058";
|
||
|
||
src = fetchzip {
|
||
url = "https://github.com/cormullion/juliamono/releases/download/v${version}/${pname}.tar.gz";
|
||
stripRoot = false;
|
||
hash = "sha256-QKMTU6ISP983Kg4ZxyPV4IgiuO0ZXMiOtvZPwP7dF7k=";
|
||
};
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
|
||
mkdir -p $out/share/fonts/truetype
|
||
mv *.ttf $out/share/fonts/truetype
|
||
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "Monospaced font for scientific and technical computing";
|
||
longDescription = ''
|
||
JuliaMono is a monospaced typeface designed for use in text editing
|
||
environments that require a wide range of specialist and technical Unicode
|
||
characters. It was intended as a fun experiment to be presented at the
|
||
2020 JuliaCon conference in Lisbon, Portugal (which of course didn’t
|
||
physically happen in Lisbon, but online).
|
||
'';
|
||
maintainers = with maintainers; [ suhr ];
|
||
platforms = with platforms; all;
|
||
homepage = "https://juliamono.netlify.app/";
|
||
license = licenses.ofl;
|
||
};
|
||
}
|