cuneiform: use mkDerivation

This commit is contained in:
Robin Gloster 2016-01-24 15:50:54 +00:00
parent ecc580f379
commit c48824ba38
2 changed files with 8 additions and 31 deletions

View File

@ -1,42 +1,19 @@
a @ { cmake, patchelf, imagemagick, ... } : { stdenv, fetchurl, cmake, patchelf, imagemagick }:
let
fetchurl = a.fetchurl;
stdenv.mkDerivation rec {
name = "cuneiform-${version}";
version = "1.1.0"; version = "1.1.0";
buildInputs = with a; [
cmake imagemagick patchelf
];
in
rec {
src = fetchurl { src = fetchurl {
url = "https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2"; url = "https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2";
sha256 = "1bdvppyfx2184zmzcylskd87cxv56d8f32jf7g1qc8779l2hszjp"; sha256 = "1bdvppyfx2184zmzcylskd87cxv56d8f32jf7g1qc8779l2hszjp";
}; };
inherit buildInputs; buildInputs = [
configureFlags = []; cmake imagemagick
];
/* doConfigure should be removed if not needed */
phaseNames = ["doCmake" "doMakeInstall" "postInstall"];
libc = if a.stdenv ? glibc then a.stdenv.glibc else "";
doCmake = a.fullDepEntry(''
mkdir -p $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"];
needLib64 = a.stdenv.system == "x86_64-linux";
postInstall = a.fullDepEntry(''
patchelf --set-rpath $out/lib${if needLib64 then "64" else ""}${if a.stdenv.cc.cc != null then ":${a.stdenv.cc.cc}/lib" else ""}${if a.stdenv.cc.cc != null && needLib64 then ":${a.stdenv.cc.cc}/lib64" else ""}:${a.imagemagick}/lib $out/bin/cuneiform
'') ["minInit" "addInputs" "doMakeInstall"];
name = "cuneiform-" + version;
meta = { meta = {
inherit version;
description = "Multi-language OCR system"; description = "Multi-language OCR system";
}; };
} }

View File

@ -11450,7 +11450,7 @@ let
liblapack = liblapackWithoutAtlas; liblapack = liblapackWithoutAtlas;
}; };
cuneiform = builderDefsPackage (callPackage ../tools/graphics/cuneiform) {}; cuneiform = callPackage ../tools/graphics/cuneiform {};
cutecom = callPackage ../tools/misc/cutecom { }; cutecom = callPackage ../tools/misc/cutecom { };