mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
bcunit: init at 3.0
This commit is contained in:
parent
b30ead6e54
commit
bcd3dcfc2b
22
pkgs/tools/misc/bcunit/default.nix
Normal file
22
pkgs/tools/misc/bcunit/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchFromGitHub, cmake}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${baseName}-${version}";
|
||||
baseName = "bcunit";
|
||||
version = "3.0";
|
||||
buildInputs = [cmake];
|
||||
src = fetchFromGitHub {
|
||||
owner = "BelledonneCommunications";
|
||||
repo = "${baseName}";
|
||||
rev = "${version}";
|
||||
sha256 = "1kdq9w8i3nypfz7d43rmv1csqrqpip9p8xfa7vyp52aqkmhrby9l";
|
||||
};
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''A fork of CUnit test framework'';
|
||||
license = stdenv.lib.licenses.lgpl2Plus;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -1262,6 +1262,7 @@ in
|
||||
curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { };
|
||||
|
||||
cunit = callPackage ../tools/misc/cunit { };
|
||||
bcunit = callPackage ../tools/misc/bcunit { };
|
||||
|
||||
curlftpfs = callPackage ../tools/filesystems/curlftpfs { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user