mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
de88f45da9
Co-authored-by: materus <materus@podkos.pl> Co-authored-by: Franz Pletz <fpletz@fnordicwalking.de>
33 lines
624 B
Nix
33 lines
624 B
Nix
{ lib
|
|
, stdenv
|
|
, qrcodegen
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "qrcodegencpp";
|
|
version = qrcodegen.version;
|
|
|
|
src = qrcodegen.src;
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/cpp";
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.cc.isClang [
|
|
stdenv.cc.cc.libllvm.out
|
|
];
|
|
|
|
makeFlags = lib.optionals stdenv.cc.isClang [ "AR=llvm-ar" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dt $out/lib/ libqrcodegencpp.a
|
|
install -Dt $out/include/qrcodegen/ qrcodegen.hpp
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
inherit (qrcodegen.meta) description homepage license maintainers platforms;
|
|
};
|
|
})
|