2021-12-05 22:45:19 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, python3Packages }:
|
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";
|
|
|
|
};
|
|
|
|
|
2021-12-05 22:45:19 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "python3-support.patch";
|
|
|
|
url = "https://gitlab.com/wavexx/facedetect/-/commit/8037d4406eb76dd5c106819f72c3562f8b255b5b.patch";
|
|
|
|
sha256 = "1752k37pbkigiwglx99ba9360ahzzrrb65a8d77k3xs4c3bcmk2p";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ python3Packages.python python3Packages.wrapPython ];
|
|
|
|
pythonPath = [ python3Packages.numpy python3Packages.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
|
|
|
|
2021-12-05 22:45:19 +01:00
|
|
|
postPatch = ''
|
2017-07-29 15:04:34 +02:00
|
|
|
substituteInPlace facedetect \
|
2021-12-05 22:45:19 +01:00
|
|
|
--replace /usr/share/opencv "${python3Packages.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 ];
|
|
|
|
};
|
|
|
|
}
|