summary refs log tree commit diff
path: root/pkgs/tools/graphics/blockhash/default.nix
blob: 0a08e0cd31ff9a2ccdf94c7cdf5ca4f5ce0db3d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:

stdenv.mkDerivation rec {
  pname = "blockhash";
  version = "0.3.3";

  src = fetchFromGitHub {
    owner = "commonsmachinery";
    repo = "blockhash";
    rev = "v${version}";
    sha256 = "sha256-QoqFTCfWtXIrFF3Yx4NfOa9cSjHtCSKz3k3i0u9Qx9M=";
  };

  nativeBuildInputs = [ python3 pkg-config wafHook ];
  buildInputs = [ imagemagick ];

  strictDeps = true;

  meta = with lib; {
    homepage = "https://github.com/commonsmachinery/blockhash";
    description = ''
      This is a perceptual image hash calculation tool based on algorithm
      descibed in Block Mean Value Based Image Perceptual Hashing by Bian Yang,
      Fan Gu and Xiamu Niu.
    '';
    license = licenses.mit;
    maintainers = [ maintainers.infinisil ];
    platforms = platforms.unix;
  };
}