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

28 lines
615 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2019-06-20 19:13:18 +00:00
buildGoModule rec {
pname = "pdfcpu";
2021-01-20 14:55:33 +00:00
version = "0.3.8";
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-01-20 14:55:33 +00:00
sha256 = "sha256-Rx/LUp5s2DhEKuLUklYXjtTXjqBju+5YzK1hNfBCnIE=";
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 ];
};
}