summary refs log tree commit diff
path: root/pkgs/tools/graphics/cuneiform
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-02-09 20:37:11 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-02-09 20:37:11 +0000
commit921b7d3c6948fca1e758b99ea186a386685358ea (patch)
tree6576c3586f250e831e697da8bbafcd183ff5e13f /pkgs/tools/graphics/cuneiform
parentf9b9844949deb54bf4e3707bc7d47bd50d45635c (diff)
downloadnixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar.gz
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar.bz2
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar.lz
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar.xz
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.tar.zst
nixpkgs-921b7d3c6948fca1e758b99ea186a386685358ea.zip
Added Cuneiform OCR. Works somehow..
svn path=/nixpkgs/trunk/; revision=14015
Diffstat (limited to 'pkgs/tools/graphics/cuneiform')
-rw-r--r--pkgs/tools/graphics/cuneiform/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/cuneiform/default.nix b/pkgs/tools/graphics/cuneiform/default.nix
new file mode 100644
index 00000000000..2eddf1aaa1b
--- /dev/null
+++ b/pkgs/tools/graphics/cuneiform/default.nix
@@ -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";
+  };
+}