nixpkgs/pkgs/by-name/pa/paper-clip/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1,016 B
Nix
Raw Normal View History

2024-01-19 15:37:03 +01:00
{ lib
, desktop-file-utils
, exempi
, fetchFromGitHub
, glib
, gtk4
, libadwaita
, meson
, ninja
, pkg-config
, poppler
, stdenv
, vala
, wrapGAppsHook4
}:
stdenv.mkDerivation (finalAttrs: {
pname = "paper-clip";
2024-01-28 15:28:41 +01:00
version = "5.0";
2024-01-19 15:37:03 +01:00
src = fetchFromGitHub {
owner = "Diego-Ivan";
repo = "Paper-Clip";
rev = "v${finalAttrs.version}";
2024-01-28 15:28:41 +01:00
hash = "sha256-lkPX8S/0e7qEAfRiq0MyacDrqSWllncd9STxR7NKUFw=";
2024-01-19 15:37:03 +01:00
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
pkg-config
vala
wrapGAppsHook4
];
buildInputs = [
exempi
glib
gtk4
libadwaita
poppler
];
meta = with lib; {
changelog = "https://github.com/Diego-Ivan/Paper-Clip/releases/tag/v${finalAttrs.version}";
description = "Edit PDF document metadata";
homepage = "https://github.com/Diego-Ivan/Paper-Clip";
license = licenses.gpl3Plus;
mainProgram = "pdf-metadata-editor";
maintainers = with maintainers; [ michaelgrahamevans ];
platforms = platforms.linux;
};
})