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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
849 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, pkg-config, imagemagick, wafHook }:
2018-05-19 23:33:09 +02:00
stdenv.mkDerivation rec {
pname = "blockhash";
version = "0.3.2";
2018-05-19 23:33:09 +02:00
src = fetchFromGitHub {
owner = "commonsmachinery";
repo = "blockhash";
rev = "v${version}";
sha256 = "0x3lvhnkb4c3pyq6p81qnnqimz35wpippiac506dgjx3b1848v35";
2018-05-19 23:33:09 +02:00
};
nativeBuildInputs = [ python3 pkg-config wafHook ];
2018-05-19 23:33:09 +02:00
buildInputs = [ imagemagick ];
2021-03-25 10:57:48 +01:00
strictDeps = true;
meta = with lib; {
2021-12-29 17:47:12 +01:00
homepage = "https://github.com/commonsmachinery/blockhash";
2018-05-19 23:33:09 +02: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;
maintainers = [ maintainers.infinisil ];
platforms = platforms.unix;
};
}