mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
994 B
Nix
38 lines
994 B
Nix
{ lib, fetchFromGitHub, pkgs, python3, wrapGAppsHook3, gobject-introspection }:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "pdf-quench";
|
|
version = "1.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxerwang";
|
|
repo = "pdf-quench";
|
|
rev = "b72b3970b371026f9a7ebe6003581e8a63af98f6";
|
|
sha256 = "1rp9rlwr6rarcsxygv5x2c5psgwl6r69k0lsgribgyyla9cf2m7n";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook3 gobject-introspection ];
|
|
buildInputs = with pkgs; [
|
|
gtk3
|
|
goocanvas2
|
|
poppler_gi
|
|
];
|
|
propagatedBuildInputs = with python3.pkgs; [ pygobject3 pypdf2 ];
|
|
|
|
format = "other";
|
|
doCheck = false;
|
|
|
|
installPhase = ''
|
|
install -D -T -m 755 src/pdf_quench.py $out/bin/pdf-quench
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxerwang/pdf-quench";
|
|
description = "Visual tool for cropping pdf files";
|
|
mainProgram = "pdf-quench";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ flokli ];
|
|
};
|
|
}
|