mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
facedetect: init at 0.1
This commit is contained in:
parent
1639429359
commit
a444b34b52
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/graphics/facedetect/default.nix
Normal file
37
pkgs/tools/graphics/facedetect/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -997,6 +997,8 @@ with pkgs;
|
|||
|
||||
f3 = callPackage ../tools/filesystems/f3 { };
|
||||
|
||||
facedetect = callPackage ../tools/graphics/facedetect { };
|
||||
|
||||
facter = callPackage ../tools/system/facter {
|
||||
boost = boost160;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue