nixpkgs/pkgs/applications/graphics/pdfcpu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
782 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-06-20 19:13:18 +00:00
buildGoModule rec {
pname = "pdfcpu";
2023-05-07 04:35:30 +00:00
version = "0.4.1";
2019-06-20 19:13:18 +00:00
src = fetchFromGitHub {
2019-08-12 08:16:39 +00:00
owner = "pdfcpu";
2019-06-20 19:13:18 +00:00
repo = pname;
rev = "v${version}";
2023-05-07 04:35:30 +00:00
sha256 = "sha256-4crBl0aQFsSB1D3iuAVcwcet8KSUB3/tUi1kD1VmpAI=";
2019-06-20 19:13:18 +00:00
};
2023-05-07 04:35:30 +00:00
vendorHash = "sha256-qFupm0ymDw9neAu6Xl3fQ/mMWn9f40Vdf7uOLOBkcaE=";
2019-06-20 19:13:18 +00:00
2020-09-02 17:24:47 +00: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 19:13:18 +00:00
subPackages = [ "cmd/pdfcpu" ];
meta = with lib; {
2019-06-20 19:13:18 +00:00
description = "A PDF processor written in Go";
homepage = "https://pdfcpu.io";
2019-06-20 19:13:18 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
};
}