facedetect: init at 0.1

This commit is contained in:
Robert Helgesson 2017-07-29 15:04:34 +02:00
parent 1639429359
commit a444b34b52
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub, python2Packages }:
stdenv.mkDerivation rec {
name = "facedetect-${version}";
version = "0.1";
src = fetchFromGitHub {
owner = "wavexx";
repo = "facedetect";
rev = "v${version}";
sha256 = "0mddh71cjbsngpvjli406ndi2x613y39ydgb8bi4z1jp063865sd";
};
buildInputs = [ python2Packages.python python2Packages.wrapPython ];
pythonPath = [ python2Packages.numpy python2Packages.opencv ];
phases = [ "unpackPhase" "patchPhase" "installPhase" ];
patchPhase = ''
substituteInPlace facedetect \
--replace /usr/share/opencv "${python2Packages.opencv}/share/OpenCV"
'';
installPhase = ''
install -v -m644 -D README.rst $out/share/doc/${name}/README.rst
install -v -m755 -D facedetect $out/bin/facedetect
wrapPythonPrograms
'';
meta = with stdenv.lib; {
homepage = https://www.thregr.org/~wavexx/software/facedetect/;
description = "A simple face detector for batch processing";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}

View File

@ -997,6 +997,8 @@ with pkgs;
f3 = callPackage ../tools/filesystems/f3 { };
facedetect = callPackage ../tools/graphics/facedetect { };
facter = callPackage ../tools/system/facter {
boost = boost160;
};