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

25 lines
616 B
Nix
Raw Normal View History

2019-06-20 21:13:18 +02:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pdfcpu";
2020-05-28 10:15:45 +02:00
version = "0.3.3";
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}";
2020-05-28 10:15:45 +02:00
sha256 = "09z4z2csp7ld47q36x2id5zadaihisbnk7bkdvci826hwm8km7sl";
2019-06-20 21:13:18 +02:00
};
vendorSha256 = "09alkpfyxapycv6zsaz7prgbr0a1jzd78n7w2mh01mg4hhb2j3k7";
2019-06-20 21:13:18 +02:00
subPackages = [ "cmd/pdfcpu" ];
meta = with stdenv.lib; {
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 ];
platforms = platforms.all;
};
}