portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / by-name / ph / phash / package.nix
blob8f40cd0d9a71c950f76f27aa814d3536b58c0bae
1 { lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, cimg, imagemagick }:
3 stdenv.mkDerivation rec {
4   pname = "pHash";
5   version = "0.9.6";
7   buildInputs = [ cimg ];
9   # CImg.h calls to external binary `convert` from the `imagemagick` package
10   # at runtime
11   propagatedBuildInputs = [ imagemagick ];
13   nativeBuildInputs = [ pkg-config ];
15   configureFlags = ["--enable-video-hash=no" "--enable-audio-hash=no"];
16   postInstall = ''
17     cp ${cimg}/include/CImg.h $out/include/
18   '';
20   src = fetchFromGitHub {
21     owner = "clearscene";
22     repo = "pHash";
23     rev = version;
24     sha256 = "sha256-frISiZ89ei7XfI5F2nJJehfQZsk0Mlb4n91q/AiZ2vA=";
25   };
27   NIX_LDFLAGS = "-lfftw3_threads";
29   patches = [
30     # proper pthread return value (https://github.com/clearscene/pHash/pull/20)
31     ./0001-proper-pthread-return-value.patch
32   ];
34   meta = with lib; {
35     description = "Compute the perceptual hash of an image";
36     license = licenses.gpl3;
37     maintainers = [maintainers.imalsogreg];
38     platforms = platforms.all;
39     homepage = "http://www.phash.org";
40     downloadPage = "https://github.com/clearscene/pHash";
41   };