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

33 lines
919 B
Nix
Raw Normal View History

2018-05-19 23:33:09 +02:00
{ stdenv, fetchFromGitHub, python, pkgconfig, imagemagick }:
stdenv.mkDerivation rec {
name = "blockhash-${version}";
version = "0.3.1";
2018-05-19 23:33:09 +02:00
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p";
2018-05-19 23:33:09 +02:00
};
nativeBuildInputs = [ python pkgconfig ];
buildInputs = [ imagemagick ];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
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;
};
}