mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Added Cuneiform OCR. Works somehow..
svn path=/nixpkgs/trunk/; revision=14015
This commit is contained in:
parent
f9b9844949
commit
921b7d3c69
39
pkgs/tools/graphics/cuneiform/default.nix
Normal file
39
pkgs/tools/graphics/cuneiform/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
a :
|
||||
let
|
||||
fetchurl = a.fetchurl;
|
||||
|
||||
version = a.lib.getAttr ["version"] "0.6" a;
|
||||
buildInputs = with a; [
|
||||
cmake imagemagick patchelf
|
||||
];
|
||||
in
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = "http://launchpad.net/cuneiform-linux/${version}/${version}/+download/cuneiform-${version}.tar.bz2";
|
||||
sha256 = "0jgiccimwv1aqp9gzl9937gdlh9zl5qpaygf0n1xcbfd5aqz14ig";
|
||||
};
|
||||
|
||||
inherit buildInputs;
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doCmake" "doMakeInstall" "postInstall"];
|
||||
|
||||
libc = if a.stdenv ? glibc then a.stdenv.glibc else null;
|
||||
|
||||
doCmake = a.FullDepEntry(''
|
||||
ensureDir $PWD/builddir
|
||||
cd builddir
|
||||
export NIX_LDFLAGS="$NIX_LDFLAGS -ldl -L$out/lib"
|
||||
cmake .. -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=$out -DDL_LIB=${libc}/lib
|
||||
'') ["minInit" "addInputs" "doUnpack" "defEnsureDir"];
|
||||
|
||||
postInstall = a.FullDepEntry(''
|
||||
patchelf --set-rpath $out/lib:${a.stdenv.gcc.gcc}/lib $out/bin/cuneiform
|
||||
'') ["minInit" "addInputs" "doMakeInstall"];
|
||||
|
||||
name = "cuneiform-" + version;
|
||||
meta = {
|
||||
description = "Cuneiform OCR";
|
||||
};
|
||||
}
|
@ -7244,6 +7244,11 @@ let
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
cuneiform = builderDefsPackage (import ../tools/graphics/cuneiform) {
|
||||
inherit cmake patchelf;
|
||||
imagemagick=imagemagick;
|
||||
};
|
||||
|
||||
cvs = import ../applications/version-management/cvs {
|
||||
inherit fetchurl stdenv nano;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user