mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
42 lines
904 B
Nix
42 lines
904 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qrcodegen";
|
|
version = "1.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nayuki";
|
|
repo = "QR-Code-generator";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-aci5SFBRNRrSub4XVJ2luHNZ2pAUegjgQ6pD9kpkaTY=";
|
|
};
|
|
|
|
preBuild = ''
|
|
cd c/
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib $out/include/qrcodegen
|
|
cp libqrcodegen.a $out/lib
|
|
cp qrcodegen.h $out/include/qrcodegen/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nayuki.io/page/qr-code-generator-library";
|
|
description = "High-quality QR Code generator library in many languages";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mcbeth AndersonTorres ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|
|
# TODO: build the other languages
|
|
# TODO: multiple outputs
|