mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
35 lines
986 B
Nix
35 lines
986 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, nix-update-script }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.1.5";
|
|
pname = "open-pdf-sign";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/open-pdf-sign/open-pdf-sign/releases/download/v${version}/open-pdf-sign.jar";
|
|
sha256 = "sha256-WYGi2tMs+/yckFblkP7dmC7iadtk1DjpMCkUEv7d/4g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
install -Dm644 $src $out/lib/open-pdf-sign.jar
|
|
|
|
mkdir -p $out/bin
|
|
makeWrapper ${jre}/bin/java $out/bin/open-pdf-sign \
|
|
--add-flags "-jar $out/lib/open-pdf-sign.jar"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Digitally sign PDF files from your commandline";
|
|
homepage = "https://github.com/open-pdf-sign/open-pdf-sign";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ drupol ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|