My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/belcard/default.nix

25 lines
668 B

{ stdenv, cmake, fetchFromGitHub, bctoolbox, belr }:
stdenv.mkDerivation rec {
baseName = "belcard";
version = "1.0.2";
name = "${baseName}-${version}";
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = "${baseName}";
rev = "${version}";
sha256 = "1pwji83vpsdrfma24rnj3rz1x0a0g6zk3v4xjnip7zf2ys3zcnlk";
};
buildInputs = [ bctoolbox belr ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib;{
description = "Belcard is a C++ library to manipulate VCard standard format";
homepage = https://github.com/BelledonneCommunications/belcard;
license = licenses.lgpl21;
platforms = platforms.all;
};
}