mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
114 lines
3.1 KiB
Nix
114 lines
3.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
libsForQt5,
|
|
fpc,
|
|
lazarus,
|
|
xorg,
|
|
libqt5pas,
|
|
runCommand,
|
|
_7zz,
|
|
archiver,
|
|
brotli,
|
|
upx,
|
|
zpaq,
|
|
zstd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "peazip";
|
|
version = "10.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "peazip";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-jYm3Ngwby75eUFM59tCQ7KWVywQOj+IzuPpATD+QhLo=";
|
|
};
|
|
sourceRoot = "${src.name}/peazip-sources";
|
|
|
|
postPatch = ''
|
|
# set it to use compression programs from $PATH
|
|
substituteInPlace dev/peach.pas --replace " HSYSBIN = 0;" " HSYSBIN = 2;"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
libsForQt5.wrapQtAppsHook
|
|
lazarus
|
|
fpc
|
|
];
|
|
|
|
buildInputs = [
|
|
xorg.libX11
|
|
libqt5pas
|
|
];
|
|
|
|
NIX_LDFLAGS = "--as-needed -rpath ${lib.makeLibraryPath buildInputs}";
|
|
|
|
buildPhase = ''
|
|
# lazarus tries to create files in $HOME/.lazarus
|
|
export HOME=$(mktemp -d)
|
|
pushd dev
|
|
lazbuild --lazarusdir=${lazarus}/share/lazarus --add-package metadarkstyle/metadarkstyle.lpk
|
|
lazbuild --lazarusdir=${lazarus}/share/lazarus --widgetset=qt5 --build-all project_pea.lpi
|
|
lazbuild --lazarusdir=${lazarus}/share/lazarus --widgetset=qt5 --build-all project_peach.lpi
|
|
popd
|
|
'';
|
|
|
|
# peazip looks for the "7z", not "7zz"
|
|
_7z = runCommand "7z" { } ''
|
|
mkdir -p $out/bin
|
|
ln -s ${_7zz}/bin/7zz $out/bin/7z
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D dev/{pea,peazip} -t $out/lib/peazip
|
|
wrapProgram $out/lib/peazip/peazip --prefix PATH : ${
|
|
lib.makeBinPath [
|
|
_7z
|
|
archiver
|
|
brotli
|
|
upx
|
|
zpaq
|
|
zstd
|
|
]
|
|
}
|
|
mkdir -p $out/bin
|
|
ln -s $out/lib/peazip/{pea,peazip} $out/bin/
|
|
|
|
mkdir -p $out/share/peazip $out/lib/peazip/res/share
|
|
ln -s $out/share/peazip $out/lib/peazip/res/share
|
|
cp -r res/share/{icons,lang,themes,presets} $out/share/peazip/
|
|
# Install desktop entries
|
|
install -D res/share/batch/freedesktop_integration/*.desktop -t $out/share/applications
|
|
# Install desktop entries's icons
|
|
mkdir -p $out/share/icons/hicolor/256x256/apps
|
|
ln -s $out/share/peazip/icons/peazip.png -t $out/share/icons/hicolor/256x256/apps/
|
|
mkdir $out/share/icons/hicolor/256x256/mimetypes
|
|
ln -s $out/share/peazip/icons/peazip_{7z,zip,cd}.png $out/share/icons/hicolor/256x256/mimetypes/
|
|
mkdir $out/share/icons/hicolor/256x256/actions
|
|
ln -s $out/share/peazip/icons/peazip_{add,extract,convert}.png $out/share/icons/hicolor/256x256/actions/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform file and archive manager";
|
|
longDescription = ''
|
|
Free Zip / Unzip software and Rar file extractor. Cross-platform file and archive manager.
|
|
|
|
Features volume spanning, compression, authenticated encryption.
|
|
|
|
Supports 7Z, 7-Zip sfx, ACE, ARJ, Brotli, BZ2, CAB, CHM, CPIO, DEB, GZ, ISO, JAR, LHA/LZH, NSIS, OOo, PEA, RAR, RPM, split, TAR, Z, ZIP, ZIPX, Zstandard.
|
|
'';
|
|
license = licenses.gpl3Only;
|
|
homepage = "https://peazip.github.io";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ annaaurora ];
|
|
mainProgram = "peazip";
|
|
};
|
|
}
|