nixpkgs/pkgs/tools/graphics/blockhash/default.nix

29 lines
810 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python, pkgconfig, imagemagick, wafHook }:
2018-05-19 21:33:09 +00:00
stdenv.mkDerivation rec {
name = "blockhash-${version}";
version = "0.3.1";
2018-05-19 21:33:09 +00:00
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
2018-05-19 21:33:09 +00:00
};
nativeBuildInputs = [ python pkgconfig wafHook ];
2018-05-19 21:33:09 +00:00
buildInputs = [ imagemagick ];
meta = with stdenv.lib; {
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;
};
}