nixpkgs/pkgs/by-name/aa/aaphoto/package.nix

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

56 lines
1.4 KiB
Nix
Raw Normal View History

2021-11-27 17:14:30 +00:00
{ lib
, stdenv
2024-10-17 17:49:50 +00:00
, fetchFromGitHub
2021-11-27 17:14:30 +00:00
, jasper
, libpng
, libjpeg
, zlib
, llvmPackages
2021-11-27 17:14:30 +00:00
}:
stdenv.mkDerivation rec {
pname = "aaphoto";
2021-12-19 04:31:39 +00:00
version = "0.45";
2021-11-27 17:14:30 +00:00
2024-10-17 17:49:50 +00:00
src = fetchFromGitHub {
owner = "log69";
repo = "aaphoto";
rev = "581b3fad60382bdd36356155112559f731e31be3";
hash = "sha256-PcvZ6v8vcZcrSn9EJ0CqxYz9gOJXlcVIkLLzFik0Pec=";
2021-11-27 17:14:30 +00:00
};
nativeBuildInputs = lib.optionals stdenv.cc.isClang [
llvmPackages.openmp
];
2021-11-27 17:14:30 +00:00
buildInputs = [
jasper
libpng
libjpeg
zlib
];
postInstall = ''
install -Dm644 NEWS README REMARKS TODO -t $out/share/doc/${pname}
'';
meta = with lib; {
2024-10-17 17:49:50 +00:00
homepage = "https://github.com/log69/aaphoto";
2021-11-27 17:14:30 +00:00
description = "Free and open source automatic photo adjusting software";
longDescription = ''
Auto Adjust Photo tries to give a solution for the automatic color
correction of photos. This means setting the contrast, color balance,
saturation and gamma levels of the image by analization.
This can be a solution for those kind of users who are not able to manage
and correct images with complicated graphical softwares, or just simply
don't intend to spend a lot of time with manually correcting the images
one-by-one.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
2023-11-23 02:51:17 +00:00
mainProgram = "aaphoto";
2021-11-27 17:14:30 +00:00
};
}