mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
belcard: init at 1.0.2
This commit is contained in:
parent
fa633e7905
commit
051c92a825
24
pkgs/development/libraries/belcard/default.nix
Normal file
24
pkgs/development/libraries/belcard/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, 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;
|
||||
};
|
||||
}
|
|
@ -8180,6 +8180,8 @@ with pkgs;
|
|||
|
||||
beecrypt = callPackage ../development/libraries/beecrypt { };
|
||||
|
||||
belcard = callPackage ../development/libraries/belcard { };
|
||||
|
||||
belr = callPackage ../development/libraries/belr { };
|
||||
|
||||
beignet = callPackage ../development/libraries/beignet {
|
||||
|
|
Loading…
Reference in a new issue