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

27 lines
613 B
Nix
Raw Normal View History

2019-06-20 19:13:18 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pdfcpu";
2020-01-05 09:23:17 +00:00
version = "0.3.2";
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}";
2020-01-05 09:23:17 +00:00
sha256 = "0a7d36hzcvj68apzc726r2vqsjyrkcynxif5laarxapm6p67g3z4";
2019-06-20 19:13:18 +00:00
};
2020-01-05 09:23:17 +00:00
modSha256 = "0ak34wr5cbcvblndslsxdd24vfj3h02xqjqnj5amkll5iqn5mzi1";
2019-06-20 19:13:18 +00: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;
};
}