belr: init at 0.1.3
This commit is contained in:
parent
611ed16125
commit
fa633e7905
24
pkgs/development/libraries/belr/default.nix
Normal file
24
pkgs/development/libraries/belr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user