1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

belr: init at 0.1.3

This commit is contained in:
adisbladis 2018-02-10 13:21:47 +08:00
parent 611ed16125
commit fa633e7905
No known key found for this signature in database
GPG key ID: ED58F95069B004F5
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake, fetchFromGitHub, bctoolbox }:
stdenv.mkDerivation rec {
baseName = "belr";
version = "0.1.3";
name = "${baseName}-${version}";
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = "${baseName}";
rev = "${version}";
sha256 = "0mf8lsyq1z3b5p47c00lnwc8n7v9nzs1fd2g9c9hnz6fjd2ka44w";
};
buildInputs = [ bctoolbox ];
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib;{
description = "Belr is Belledonne Communications' language recognition library";
homepage = https://github.com/BelledonneCommunications/belr;
license = licenses.lgpl21;
platforms = platforms.all;
};
}

View file

@ -8180,6 +8180,8 @@ with pkgs;
beecrypt = callPackage ../development/libraries/beecrypt { };
belr = callPackage ../development/libraries/belr { };
beignet = callPackage ../development/libraries/beignet {
inherit (llvmPackages_39) llvm clang-unwrapped;
};