depot/third_party/nixpkgs/pkgs/development/libraries/phash/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

37 lines
979 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, cimg, imagemagick }:
stdenv.mkDerivation rec {
pname = "pHash";
version = "0.9.4";
buildInputs = [ cimg ];
# CImg.h calls to external binary `convert` from the `imagemagick` package
# at runtime
propagatedBuildInputs = [ imagemagick ];
nativeBuildInputs = [ pkgconfig ];
configureFlags = ["--enable-video-hash=no" "--enable-audio-hash=no"];
postInstall = ''
cp ${cimg}/include/CImg.h $out/include/
'';
src = fetchFromGitHub {
owner = "clearscene";
repo = "pHash";
rev = version;
sha256 = "0y4gknfkns5sssfaj0snyx29752my20xmxajg6xggijx0myabbv0";
};
meta = with stdenv.lib; {
inherit version;
description = "Compute the perceptual hash of an image";
license = licenses.gpl3;
maintainers = [maintainers.imalsogreg];
platforms = platforms.all;
homepage = "http://www.phash.org";
downloadPage = "https://github.com/clearscene/pHash";
updateWalker = true;
};
}