nixpkgs/pkgs/by-name/cu/curtail/package.nix

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

78 lines
1.3 KiB
Nix
Raw Normal View History

2022-05-26 10:56:36 +00:00
{ lib
, python3
, fetchFromGitHub
, wrapGAppsHook4
2022-05-26 10:56:36 +00:00
, appstream-glib
, desktop-file-utils
, gettext
2024-01-11 21:07:05 +00:00
, gtk4
, libadwaita
2022-05-26 10:56:36 +00:00
, meson
, ninja
, pkg-config
, gobject-introspection
, jpegoptim
, libwebp
, optipng
, pngquant
2024-01-11 21:07:05 +00:00
, oxipng
2022-05-26 10:56:36 +00:00
}:
python3.pkgs.buildPythonApplication rec {
pname = "curtail";
2024-11-23 10:02:46 +00:00
version = "1.11.1";
2022-05-26 10:56:36 +00:00
format = "other";
src = fetchFromGitHub {
owner = "Huluti";
repo = "Curtail";
2022-07-13 01:44:50 +00:00
rev = "refs/tags/${version}";
2024-11-23 10:02:46 +00:00
sha256 = "sha256-IpN1NMIT13icYnflkcZW+aSzw0Nau8UIOP38Kzji3bg=";
2022-05-26 10:56:36 +00:00
};
nativeBuildInputs = [
wrapGAppsHook4
2022-05-26 10:56:36 +00:00
appstream-glib
desktop-file-utils
gettext
2024-01-11 21:07:05 +00:00
gtk4
libadwaita
2022-05-26 10:56:36 +00:00
meson
ninja
pkg-config
gobject-introspection
2022-05-26 10:56:36 +00:00
];
buildInputs = [
2022-05-26 10:56:36 +00:00
appstream-glib
gettext
2024-01-11 21:07:05 +00:00
gtk4
libadwaita
2022-05-26 10:56:36 +00:00
];
propagatedBuildInputs = [
python3.pkgs.pygobject3
];
2022-05-26 10:56:36 +00:00
preInstall = ''
patchShebangs ../build-aux/meson/postinstall.py
'';
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=(
"''${gappsWrapperArgs[@]}"
2024-01-11 21:07:05 +00:00
"--prefix" "PATH" ":" "${lib.makeBinPath [ jpegoptim libwebp optipng pngquant oxipng ]}"
)
2022-05-26 10:56:36 +00:00
'';
meta = with lib; {
description = "Simple & useful image compressor";
mainProgram = "curtail";
2022-05-26 10:56:36 +00:00
homepage = "https://github.com/Huluti/Curtail";
license = licenses.gpl3Only;
maintainers = with maintainers; [ aleksana ];
2022-05-26 10:56:36 +00:00
};
}