From ec4c76e0a8c66fbea095589f91640553c07eb86f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anselm=20Sch=C3=BCler?= Date: Thu, 26 May 2022 12:56:36 +0200 Subject: [PATCH] curtail: init at 1.3.0 --- .../applications/graphics/curtail/default.nix | 66 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 68 insertions(+) create mode 100644 pkgs/applications/graphics/curtail/default.nix diff --git a/pkgs/applications/graphics/curtail/default.nix b/pkgs/applications/graphics/curtail/default.nix new file mode 100644 index 00000000000..925b1112b30 --- /dev/null +++ b/pkgs/applications/graphics/curtail/default.nix @@ -0,0 +1,66 @@ +{ lib +, python3 +, fetchFromGitHub +, wrapGAppsHook +, appstream-glib +, desktop-file-utils +, gettext +, gtk3 +, meson +, ninja +, pkg-config +, gobject-introspection +, jpegoptim +, libwebp +, optipng +, pngquant +}: + +python3.pkgs.buildPythonApplication rec { + pname = "curtail"; + version = "1.3.0"; + format = "other"; + + src = fetchFromGitHub { + owner = "Huluti"; + repo = "Curtail"; + rev = version; + sha256 = "sha256-tNk+KI+DEMR63zfcBpfPTxAFKzvGWvpa9erK9SAAtPc="; + }; + + nativeBuildInputs = [ + wrapGAppsHook + appstream-glib + desktop-file-utils + gettext + gtk3 + meson + ninja + pkg-config + ]; + + propagatedBuildInputs = [ + appstream-glib + python3.pkgs.pygobject3 + gobject-introspection + gettext + ]; + + # Currently still required for the gobject-introspection setup hook + strictDeps = false; + + preInstall = '' + patchShebangs ../build-aux/meson/postinstall.py + ''; + + postInstall = '' + wrapProgram $out/bin/curtail --prefix PATH : ${lib.makeBinPath [ jpegoptim libwebp optipng pngquant ]} + ''; + + meta = with lib; { + description = "Simple & useful image compressor"; + homepage = "https://github.com/Huluti/Curtail"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ anselmschueler ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d9a20d8406c..97c0f3d81f8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -25712,6 +25712,8 @@ with pkgs; curseradio = callPackage ../applications/audio/curseradio { }; + curtail = callPackage ../applications/graphics/curtail { }; + cutecom = libsForQt5.callPackage ../tools/misc/cutecom { }; cvs = callPackage ../applications/version-management/cvs { };