mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
89 lines
2.9 KiB
Nix
89 lines
2.9 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchzip
|
|
, copyDesktopItems
|
|
, jdk11
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, unzip
|
|
, xdg-utils
|
|
, writeScript
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "irpf";
|
|
version = "2024-1.3";
|
|
|
|
# https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf
|
|
# Para outros sistemas operacionais -> Multi
|
|
src = let
|
|
year = lib.head (lib.splitVersion finalAttrs.version);
|
|
in fetchzip {
|
|
url = "https://downloadirpf.receita.fazenda.gov.br/irpf/${year}/irpf/arquivos/IRPF${finalAttrs.version}.zip";
|
|
hash = "sha256-UMzoQSSlmOi7TIqPF0vfeelum5JSa6ne4c7ZFREuDr8=";
|
|
};
|
|
|
|
passthru.updateScript = writeScript "update-irpf" ''
|
|
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl pup common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
#parses the html with the install links for the containers that contain the instalation files of type 'file archive, gets the version number of each version, and sorts to get the latest one on the website
|
|
version="$(curl -s https://www.gov.br/receitafederal/pt-br/centrais-de-conteudo/download/pgd/dirpf | pup '.rfb_container .rfb_ositem:parent-of(.fa-file-archive) attr{href}' | grep -oP "IRPF\K(\d+)-[\d.]+\d" | sort -r | head -1)"
|
|
update-source-version irpf "$version"
|
|
'';
|
|
|
|
nativeBuildInputs = [ unzip makeWrapper copyDesktopItems ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = finalAttrs.pname;
|
|
exec = finalAttrs.pname;
|
|
icon = "rfb64";
|
|
desktopName = "Imposto de Renda Pessoa Física";
|
|
comment = "Programa Oficial da Receita para elaboração do IRPF";
|
|
categories = [ "Office" ];
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
BASEDIR="$out/share/${finalAttrs.pname}"
|
|
mkdir -p "$BASEDIR"
|
|
|
|
cp --no-preserve=mode -r help lib lib-modulos "$BASEDIR"
|
|
|
|
install -Dm644 irpf.jar Leia-me.htm offline.png online.png pgd-updater.jar "$BASEDIR"
|
|
|
|
# make xdg-open overrideable at runtime
|
|
makeWrapper ${jdk11}/bin/java $out/bin/${finalAttrs.pname} \
|
|
--add-flags "-Dawt.useSystemAAFontSettings=on" \
|
|
--add-flags "-Dswing.aatext=true" \
|
|
--add-flags "-jar $BASEDIR/${finalAttrs.pname}.jar" \
|
|
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]} \
|
|
--set _JAVA_AWT_WM_NONREPARENTING 1 \
|
|
--set AWT_TOOLKIT MToolkit
|
|
|
|
mkdir -p $out/share/pixmaps
|
|
unzip -j lib/ppgd-icones-4.0.jar icones/rfb64.png -d $out/share/pixmaps
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Brazillian government application for reporting income tax";
|
|
longDescription = ''
|
|
Brazillian government application for reporting income tax.
|
|
|
|
IRFP - Imposto de Renda Pessoa Física - Receita Federal do Brasil.
|
|
'';
|
|
homepage = "https://www.gov.br/receitafederal/pt-br";
|
|
license = licenses.unfree;
|
|
platforms = platforms.all;
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
maintainers = with maintainers; [ atila bryanasdev000 ];
|
|
mainProgram = "irpf";
|
|
};
|
|
})
|