mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
1.8 KiB
Nix
59 lines
1.8 KiB
Nix
{ lib, stdenv, fetchurl, cmake, imagemagick, testers }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cuneiform";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/cuneiform-linux/1.1/1.1/+download/cuneiform-linux-1.1.0.tar.bz2";
|
|
sha256 = "1bdvppyfx2184zmzcylskd87cxv56d8f32jf7g1qc8779l2hszjp";
|
|
};
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "https://raw.githubusercontent.com/archlinux/svntogit-community/a2ec92f05de006b56d16ac6a6c370d54a554861a/cuneiform/trunk/build-fix.patch";
|
|
sha256 = "19cmrlx4khn30qqrpyayn7bicg8yi0wpz1x1bvqqrbvr3kwldxyj";
|
|
})
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/app-text/cuneiform/files/cuneiform-1.1.0-gcc11.patch";
|
|
sha256 = "14bp2f4dvlgxnpdza1rgszhkbxhp6p7lhgnb1s7c1x7vwdrx0ri7";
|
|
})
|
|
];
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: CMakeFiles/rbal.dir/src/statsearchbl.cpp.o:(.bss+0x0):
|
|
# multiple definition of `minrow'; CMakeFiles/rbal.dir/src/linban.c.o:(.bss+0xa3a): first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
postPatch = ''
|
|
rm cuneiform_src/Kern/hhh/tigerh/h/strings.h
|
|
'';
|
|
|
|
# make the install path match the rpath
|
|
postInstall = ''
|
|
if [[ -d ''${!outputLib}/lib64 ]]; then
|
|
mv ''${!outputLib}/lib64 ''${!outputLib}/lib
|
|
ln -s lib ''${!outputLib}/lib64
|
|
fi
|
|
'';
|
|
|
|
buildInputs = [ imagemagick ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
passthru.tests = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
command = "cuneiform";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Multi-language OCR system";
|
|
homepage = "https://launchpad.net/cuneiform-linux";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.raskin ];
|
|
mainProgram = "cuneiform";
|
|
};
|
|
})
|