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";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "0.3.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "commonsmachinery";
|
|
|
|
repo = "blockhash";
|
|
|
|
rev = "v${version}";
|
2023-11-16 04:20:00 +00:00
|
|
|
sha256 = "sha256-QoqFTCfWtXIrFF3Yx4NfOa9cSjHtCSKz3k3i0u9Qx9M=";
|
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; {
|
2021-12-30 13:39:12 +00:00
|
|
|
homepage = "https://github.com/commonsmachinery/blockhash";
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
2024-04-21 15:54:59 +00:00
|
|
|
maintainers = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "blockhash";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|