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

28 lines
615 B
Nix
Raw Normal View History

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