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

27 lines
613 B
Nix
Raw Normal View History

2019-06-20 22:13:18 +03:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pdfcpu";
2020-01-05 12:23:17 +03:00
version = "0.3.2";
2019-06-20 22:13:18 +03:00
src = fetchFromGitHub {
2019-08-12 11:16:39 +03:00
owner = "pdfcpu";
2019-06-20 22:13:18 +03:00
repo = pname;
rev = "v${version}";
2020-01-05 12:23:17 +03:00
sha256 = "0a7d36hzcvj68apzc726r2vqsjyrkcynxif5laarxapm6p67g3z4";
2019-06-20 22:13:18 +03:00
};
2020-01-05 12:23:17 +03:00
modSha256 = "0ak34wr5cbcvblndslsxdd24vfj3h02xqjqnj5amkll5iqn5mzi1";
2019-06-20 22:13:18 +03: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;
};
}