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

28 lines
607 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-06-20 12:13:18 -07:00
buildGoModule rec {
pname = "pdfcpu";
2021-02-13 21:56:17 -08:00
version = "0.3.9";
2019-06-20 12:13:18 -07:00
src = fetchFromGitHub {
2019-08-12 01:16:39 -07:00
owner = "pdfcpu";
2019-06-20 12:13:18 -07:00
repo = pname;
rev = "v${version}";
2021-02-13 21:56:17 -08:00
sha256 = "sha256-btkGn/67KVFB272j7u5MKZCeby2fyRthLLeXj8VgX7s=";
2019-06-20 12:13:18 -07:00
};
2021-01-20 06:55:33 -08:00
vendorSha256 = "sha256-/SsDDFveovJfuEdnOkxHAWccS8PJW5k9IHSxSJAgHMQ=";
2019-06-20 12:13:18 -07:00
2020-09-02 10:24:47 -07:00
# No tests
doCheck = false;
2019-06-20 12:13:18 -07:00
subPackages = [ "cmd/pdfcpu" ];
meta = with lib; {
2019-06-20 12:13:18 -07:00
description = "A PDF processor written in Go";
homepage = "https://pdfcpu.io";
2019-06-20 12:13:18 -07:00
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
};
}