2023-01-18 20:29:32 +00:00
|
|
|
{ lib, stdenvNoCC, fetchurl }:
|
2015-10-12 12:43:14 +00:00
|
|
|
|
2023-01-18 20:29:32 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "culmus";
|
2018-11-19 23:14:14 +00:00
|
|
|
version = "0.133";
|
2023-01-18 20:29:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pname}/${pname}/${version}/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-wMaHN0LQdUT2us8q1S65yzkpdNVkJ5ONwd+8g5nGTQU=";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2019-01-11 12:57:28 +00:00
|
|
|
mkdir -p $out/share/fonts/{truetype,type1}
|
|
|
|
cp -v *.pfa $out/share/fonts/type1/
|
|
|
|
cp -v *.afm $out/share/fonts/type1/
|
|
|
|
cp -v fonts.scale-type1 $out/share/fonts/type1/fonts.scale
|
2015-10-12 12:43:14 +00:00
|
|
|
cp -v *.ttf $out/share/fonts/truetype/
|
2019-01-11 12:57:28 +00:00
|
|
|
cp -v *.otf $out/share/fonts/truetype/
|
|
|
|
cp -v fonts.scale-ttf $out/share/fonts/truetype/fonts.scale
|
2023-01-18 20:29:32 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2015-10-12 12:43:14 +00:00
|
|
|
'';
|
2017-08-10 19:43:49 +00:00
|
|
|
|
2015-10-12 12:43:14 +00:00
|
|
|
meta = {
|
|
|
|
description = "Culmus Hebrew fonts";
|
|
|
|
longDescription = "The Culmus project aims at providing the Hebrew-speaking GNU/Linux and Unix community with a basic collection of Hebrew fonts for X Windows.";
|
2019-05-13 01:55:32 +00:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
license = lib.licenses.gpl2;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://culmus.sourceforge.net/";
|
|
|
|
downloadPage = "http://culmus.sourceforge.net/download.html";
|
2015-10-12 12:43:14 +00:00
|
|
|
};
|
|
|
|
}
|