Merge pull request #266336 from DamienCassou/signaturepdf
This commit is contained in:
commit
ef355dde3c
1 changed files with 58 additions and 0 deletions
58
pkgs/by-name/si/signaturepdf/package.nix
Normal file
58
pkgs/by-name/si/signaturepdf/package.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, php
|
||||
, makeWrapper
|
||||
, imagemagick
|
||||
, librsvg
|
||||
, potrace
|
||||
, pdftk
|
||||
, ghostscript
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "signaturepdf";
|
||||
version = "1.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "24eme";
|
||||
repo = "${pname}";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-7yhvTxpjxHcmRxTE7avM+dN+yz9iVr8Ea/e2yfkBURA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/share/signaturepdf $out/bin
|
||||
|
||||
cp --target-directory=$out/share/signaturepdf --recursive \
|
||||
app.php config locale public templates vendor
|
||||
|
||||
makeWrapper ${lib.getExe php} $out/bin/signaturepdf \
|
||||
--inherit-argv0 \
|
||||
--chdir $out/share/signaturepdf \
|
||||
--prefix PATH : ${lib.makeBinPath [ imagemagick librsvg potrace pdftk ghostscript ]} \
|
||||
--run 'port=$1' \
|
||||
--run '[ $# -ge 1 ] || ( echo "Usage $0 <port> -d upload_max_filesize=24M -d post_max_size=24M -d max_file_uploads=201" >&2 && exit 1 )' \
|
||||
--run 'shift' \
|
||||
--run 'echo "You may now open a web browser on http://localhost:$port"' \
|
||||
--add-flags '-S "localhost:$port" -t public'
|
||||
|
||||
runHook preInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Web software for signing PDFs and also organize pages, edit metadata and compress pdf";
|
||||
homepage = "https://pdf.24eme.fr/";
|
||||
changelog =
|
||||
"https://github.com/24eme/signaturepdf/releases/tag/v${version}";
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ DamienCassou ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue