bcunit: init at 3.0

+23
+22
pkgs/tools/misc/bcunit/default.nix
··· 1 + {stdenv, fetchFromGitHub, cmake}: 2 + stdenv.mkDerivation rec { 3 + name = "${baseName}-${version}"; 4 + baseName = "bcunit"; 5 + version = "3.0"; 6 + buildInputs = [cmake]; 7 + src = fetchFromGitHub { 8 + owner = "BelledonneCommunications"; 9 + repo = "${baseName}"; 10 + rev = "${version}"; 11 + sha256 = "1kdq9w8i3nypfz7d43rmv1csqrqpip9p8xfa7vyp52aqkmhrby9l"; 12 + }; 13 + 14 + meta = { 15 + inherit version; 16 + description = ''A fork of CUnit test framework''; 17 + license = stdenv.lib.licenses.lgpl2Plus; 18 + maintainers = [stdenv.lib.maintainers.raskin]; 19 + platforms = stdenv.lib.platforms.linux; 20 + }; 21 + } 22 +
+1
pkgs/top-level/all-packages.nix
··· 1262 1262 curl_unix_socket = callPackage ../tools/networking/curl-unix-socket rec { }; 1263 1263 1264 1264 cunit = callPackage ../tools/misc/cunit { }; 1265 + bcunit = callPackage ../tools/misc/bcunit { }; 1265 1266 1266 1267 curlftpfs = callPackage ../tools/filesystems/curlftpfs { }; 1267 1268