2021-12-19 01:06:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "blockhash";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "0.3.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "commonsmachinery";
|
|
|
|
repo = "blockhash";
|
|
|
|
rev = "v${version}";
|
2021-12-19 01:06:50 +00:00
|
|
|
sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
nativeBuildInputs = [ python3 pkg-config wafHook ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ imagemagick ];
|
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://blockhash.io/";
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|