python312Packages.icontract: relax deps (#380554)
[NixPkgs.git] / pkgs / by-name / mr / mro-unicode / package.nix
blob8c613e11e84c6028db8bf30755ba1244555f2551
2   lib,
3   stdenvNoCC,
4   fetchurl,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "mro-unicode";
9   version = "unstable-2013-05-25";
11   src = fetchurl {
12     url = "https://github.com/phjamr/MroUnicode/raw/f297de070f7eba721a47c850e08efc119d3bfbe8/MroUnicode-Regular.ttf";
13     hash = "sha256-hcQmTuRWxaU5KEMXg/O0b1olE8YxXWz0PAlqAJknR/0=";
14   };
16   dontUnpack = true;
18   installPhase = ''
19     runHook preInstall
21     install -Dm644 $src $out/share/fonts/truetype/MroUnicode-Regular.ttf
23     runHook postInstall
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/phjamr/MroUnicode";
28     description = "Unicode-compliant Mro font";
29     maintainers = with maintainers; [ mathnerd314 ];
30     license = licenses.ofl;
31     platforms = platforms.all;
32   };