3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/pdfcpu/default.nix

34 lines
785 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-06-20 20:13:18 +01:00
buildGoModule rec {
pname = "pdfcpu";
2021-12-08 00:05:59 +00:00
version = "0.3.13";
2019-06-20 20:13:18 +01:00
src = fetchFromGitHub {
2019-08-12 09:16:39 +01:00
owner = "pdfcpu";
2019-06-20 20:13:18 +01:00
repo = pname;
rev = "v${version}";
2021-12-08 00:05:59 +00:00
sha256 = "sha256-CFKo8YEAXAniX+jL2A0naJUOn3KAWwcrPsabdiZevhI=";
2019-06-20 20:13:18 +01:00
};
2022-01-31 20:11:31 +00:00
vendorSha256 = "sha256-3y42rbhurGhCI9PuSayxmLem0tv/nTjBwYxF3Dk6/yM=";
2019-06-20 20:13:18 +01:00
2020-09-02 18:24:47 +01:00
# No tests
doCheck = false;
2021-12-08 05:04:56 +00:00
doInstallCheck = true;
installCheckPhase = ''
export HOME=$(mktemp -d)
echo checking the version print of pdfcpu
$out/bin/pdfcpu version | grep ${version}
'';
2019-06-20 20:13:18 +01:00
subPackages = [ "cmd/pdfcpu" ];
meta = with lib; {
2019-06-20 20:13:18 +01:00
description = "A PDF processor written in Go";
homepage = "https://pdfcpu.io";
2019-06-20 20:13:18 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
};
}