Skip to content

Commit

Permalink
facedetect: init at 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rycee committed Jul 29, 2017
1 parent 1639429 commit a444b34
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/tools/graphics/facedetect/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -997,6 +997,8 @@ with pkgs;

f3 = callPackage ../tools/filesystems/f3 { };

facedetect = callPackage ../tools/graphics/facedetect { };

facter = callPackage ../tools/system/facter {
boost = boost160;
};
Expand Down

0 comments on commit a444b34

Please sign in to comment.