2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python2Packages }:
|
2017-07-29 15:04:34 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "facedetect";
|
2017-07-29 15:04:34 +02:00
|
|
|
version = "0.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wavexx";
|
|
|
|
repo = "facedetect";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0mddh71cjbsngpvjli406ndi2x613y39ydgb8bi4z1jp063865sd";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ python2Packages.python python2Packages.wrapPython ];
|
2019-11-25 23:25:44 +01:00
|
|
|
pythonPath = [ python2Packages.numpy python2Packages.opencv4 ];
|
2017-07-29 15:04:34 +02:00
|
|
|
|
2021-07-17 22:17:18 +02:00
|
|
|
dontConfigure = true;
|
2017-07-29 15:04:34 +02:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace facedetect \
|
2019-11-25 23:25:44 +01:00
|
|
|
--replace /usr/share/opencv "${python2Packages.opencv4}/share/opencv4"
|
2017-07-29 15:04:34 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-08-15 14:41:18 +02:00
|
|
|
install -v -m644 -D README.rst $out/share/doc/${pname}-${version}/README.rst
|
2017-07-29 15:04:34 +02:00
|
|
|
install -v -m755 -D facedetect $out/bin/facedetect
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.thregr.org/~wavexx/software/facedetect/";
|
2017-07-29 15:04:34 +02:00
|
|
|
description = "A simple face detector for batch processing";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.rycee ];
|
|
|
|
};
|
|
|
|
}
|