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

28 lines
607 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-06-20 19:13:18 +00:00
buildGoModule rec {
pname = "pdfcpu";
2021-02-14 05:56:17 +00:00
version = "0.3.9";
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}";
2021-02-14 05:56:17 +00:00
sha256 = "sha256-btkGn/67KVFB272j7u5MKZCeby2fyRthLLeXj8VgX7s=";
2019-06-20 19:13:18 +00:00
};
2021-01-20 14:55:33 +00:00
vendorSha256 = "sha256-/SsDDFveovJfuEdnOkxHAWccS8PJW5k9IHSxSJAgHMQ=";
2019-06-20 19:13:18 +00:00
2020-09-02 17:24:47 +00:00
# No tests
doCheck = false;
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 ];
};
}