manrope: 3 -> 4.505

This commit is contained in:
Mario Rodas 2023-04-01 04:20:00 +00:00
parent 72c492abb0
commit ca22810855

View File

@ -2,19 +2,26 @@
stdenvNoCC.mkDerivation rec {
pname = "manrope";
version = "3";
version = "4.505";
src = fetchFromGitHub {
owner = "sharanda";
repo = pname;
rev = "3bd68c0c325861e32704470a90dfc1868a5c37e9";
hash = "sha256-Gm7mUD/Ud2Rf8mA3jwUL7RE8clCmb6SETOskuj6r1sw=";
rev = "d79b66b10608610692d59f4107791d249d244416"; # no tags in repo
hash = "sha256-dxnCOkPUEG0knSekolx2+SGJR81vRK0wUrbzGH4KGD0=";
};
dontPatch = true;
dontConfigure = true;
dontBuild = true;
doCheck = false;
dontFixup = true;
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/opentype "desktop font"/*
install -Dm644 fonts/otf/*.otf -t $out/share/fonts/opentype
install -Dm644 fonts/ttf/*.ttf fonts/variable/*.ttf -t $out/share/fonts/truetype
runHook postInstall
'';