My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/graphics/pdftag/default.nix

24 lines
625 B

{ lib, stdenv, fetchFromGitHub, pkg-config, meson, vala, ninja
, gtk3, poppler, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "pdftag";
version = "1.0.5";
src = fetchFromGitHub {
owner = "arrufat";
repo = pname;
rev = "v${version}";
sha256 = "1paj8hs27akzsivn01a30fl3zx5gfn1h89wxg2m72fd806hk0hql";
};
nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook vala ];
buildInputs = [ gtk3 poppler ];
meta = with lib; {
description = "Edit metadata found in PDFs";
license = licenses.gpl3;
maintainers = with maintainers; [ leenaars ];
platforms = platforms.unix;
};
}