orbitron: fix date, add myself as maintainer

This commit is contained in:
Minijackson 2023-01-21 14:33:51 +01:00
parent 0639959365
commit d7a9c6604c

View file

@ -1,21 +1,21 @@
{ lib, stdenvNoCC, fetchFromGitHub }: { lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation (self: {
pname = "orbitron"; pname = "orbitron";
version = "20110526"; version = "2011-05-25";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "theleagueof"; owner = "theleagueof";
repo = "orbitron"; repo = self.pname;
rev = "13e6a52"; rev = "13e6a5222aa6818d81c9acd27edd701a2d744152";
hash = "sha256-zjNPVrDUxcQbrsg1/8fFa6Wenu1yuG/XDfKA7NVZ0rA="; hash = "sha256-zjNPVrDUxcQbrsg1/8fFa6Wenu1yuG/XDfKA7NVZ0rA=";
}; };
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
install -m444 -Dt $out/share/fonts/opentype/orbitron *.otf install -D -m444 -t $out/share/fonts/truetype $src/*.ttf
install -m444 -Dt $out/share/fonts/ttf/orbitron *.ttf install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall runHook postInstall
''; '';
@ -43,6 +43,6 @@ stdenvNoCC.mkDerivation {
''; '';
license = licenses.ofl; license = licenses.ofl;
platforms = platforms.all; platforms = platforms.all;
maintainers = [ maintainers.leenaars ]; maintainers = with lib.maintainers; [ leenaars minijackson ];
}; };
} })