3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/graphics/pdfcpu/default.nix

27 lines
611 B
Nix
Raw Normal View History

2019-06-20 20:13:18 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pdfcpu";
2019-11-27 12:12:37 +00:00
version = "0.3";
2019-06-20 20:13:18 +01:00
src = fetchFromGitHub {
2019-08-12 09:16:39 +01:00
owner = "pdfcpu";
2019-06-20 20:13:18 +01:00
repo = pname;
rev = "v${version}";
2019-11-27 12:12:37 +00:00
sha256 = "03v4wc531dwmbjqgs3y3ncdn6g3xirv1w6h1mfgglb6sjll8jxp5";
2019-06-20 20:13:18 +01:00
};
2019-09-06 12:14:11 +01:00
modSha256 = "1nagb3k2ghfw27g4vcmn7v8s5flg387jpf1l18gw6c44a1xjcivs";
2019-06-20 20:13:18 +01:00
subPackages = [ "cmd/pdfcpu" ];
meta = with stdenv.lib; {
description = "A PDF processor written in Go";
homepage = https://pdfcpu.io;
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.all;
};
}