mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
bcunit: 3.0.2 -> unstable-2019-11-19
This commit is contained in:
parent
3125cc6707
commit
4179075b4d
|
@ -1,22 +1,30 @@
|
||||||
{stdenv, fetchFromGitHub, cmake}:
|
{ cmake
|
||||||
|
, fetchFromGitLab
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${baseName}-${version}";
|
pname = "bcunit";
|
||||||
baseName = "bcunit";
|
# Latest release 3.0.2 is missing some functions needed by bctoolbox. See:
|
||||||
version = "3.0.2";
|
# https://gitlab.linphone.org/BC/public/bcunit/issues/1
|
||||||
buildInputs = [cmake];
|
version = "unstable-2019-11-19";
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "BelledonneCommunications";
|
buildInputs = [ cmake ];
|
||||||
repo = baseName;
|
src = fetchFromGitLab {
|
||||||
rev = version;
|
domain = "gitlab.linphone.org";
|
||||||
sha256 = "063yl7kxkix76r49qrj0h1qpz2p538d1yw8aih0x4i47g35k00y7";
|
owner = "public";
|
||||||
|
group = "BC";
|
||||||
|
repo = pname;
|
||||||
|
rev = "3c720fbf67dd3c02b0c7011ed4036982b2c93532";
|
||||||
|
sha256 = "1237hpmkls2igp60gdfkbknxpgwvxn1vmv2m41vyl25xw1d3g35w";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = ''A fork of CUnit test framework'';
|
description = "A fork of CUnit test framework";
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
homepage = "https://gitlab.linphone.org/BC/public/bcunit";
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
license = licenses.lgpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
maintainers = with maintainers; [ raskin jluttine ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue