Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / phash / default.nix
blob73097db5ccc6ca45fd51738c8211603375fc9986
1 { lib, stdenv, fetchFromGitHub, 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   meta = with lib; {
28     description = "Compute the perceptual hash of an image";
29     license = licenses.gpl3;
30     maintainers = [maintainers.imalsogreg];
31     platforms = platforms.all;
32     homepage = "http://www.phash.org";
33     downloadPage = "https://github.com/clearscene/pHash";
34   };