3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/graphics/blockhash/default.nix

31 lines
824 B
Nix
Raw Normal View History

2021-03-25 09:57:48 +00:00
{ lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }:
2018-05-19 22:33:09 +01:00
stdenv.mkDerivation rec {
pname = "blockhash";
version = "0.3.1";
2018-05-19 22:33:09 +01:00
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
2018-05-19 22:33:09 +01:00
};
2021-03-25 09:57:48 +00:00
nativeBuildInputs = [ python2 pkg-config wafHook ];
2018-05-19 22:33:09 +01:00
buildInputs = [ imagemagick ];
2021-03-25 09:57:48 +00:00
strictDeps = true;
meta = with lib; {
2018-05-19 22:33:09 +01: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;
};
}