42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
|
args :
|
||
|
let
|
||
|
lib = args.lib;
|
||
|
fetchurl = args.fetchurl;
|
||
|
FullDepEntry = args.FullDepEntry;
|
||
|
|
||
|
version = lib.getAttr ["version"] "0.9.3" args;
|
||
|
buildInputs = with args; [
|
||
|
libpng libcv
|
||
|
];
|
||
|
in
|
||
|
rec {
|
||
|
src = fetchurl {
|
||
|
url = "ftp://ftp.debian.org/debian/pool/main/libd/libdecodeqr/libdecodeqr_${version}.orig.tar.gz";
|
||
|
sha256 = "1kmljwx69h7zq6zlp2j19bbpz11px45z1abw03acrxjyzz5f1f13";
|
||
|
};
|
||
|
|
||
|
inherit buildInputs;
|
||
|
configureFlags = [];
|
||
|
|
||
|
/* doConfigure should be specified separately */
|
||
|
phaseNames = ["preConfigure" "doConfigure" "doMake"
|
||
|
"createDirs" "doMakeInstall" "postInstall"];
|
||
|
|
||
|
preConfigure = FullDepEntry ''
|
||
|
cd src
|
||
|
sed -e /LDCONFIG/d -i libdecodeqr/Makefile.in
|
||
|
'' ["doUnpack"];
|
||
|
postInstall = FullDepEntry ''
|
||
|
cp sample/simple/simpletest $out/bin/qrdecode
|
||
|
cd ..
|
||
|
'' ["doMake"];
|
||
|
createDirs = FullDepEntry ''
|
||
|
ensureDir $out/bin $out/lib $out/include $out/share
|
||
|
'' ["defEnsureDir"];
|
||
|
|
||
|
name = "libdecodeqr-" + version;
|
||
|
meta = {
|
||
|
description = "QR code decoder library";
|
||
|
};
|
||
|
}
|