tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bcunit: init at 3.0
Michael Raskin
9 years ago
bcd3dcfc
b30ead6e
+23
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
bcunit
default.nix
top-level
all-packages.nix
+22
pkgs/tools/misc/bcunit/default.nix
···
1
1
+
{stdenv, fetchFromGitHub, cmake}:
2
2
+
stdenv.mkDerivation rec {
3
3
+
name = "${baseName}-${version}";
4
4
+
baseName = "bcunit";
5
5
+
version = "3.0";
6
6
+
buildInputs = [cmake];
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "BelledonneCommunications";
9
9
+
repo = "${baseName}";
10
10
+
rev = "${version}";
11
11
+
sha256 = "1kdq9w8i3nypfz7d43rmv1csqrqpip9p8xfa7vyp52aqkmhrby9l";
12
12
+
};
13
13
+
14
14
+
meta = {
15
15
+
inherit version;
16
16
+
description = ''A fork of CUnit test framework'';
17
17
+
license = stdenv.lib.licenses.lgpl2Plus;
18
18
+
maintainers = [stdenv.lib.maintainers.raskin];
19
19
+
platforms = stdenv.lib.platforms.linux;
20
20
+
};
21
21
+
}
22
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
1265
+
bcunit = callPackage ../tools/misc/bcunit { };
1265
1266
1266
1267
curlftpfs = callPackage ../tools/filesystems/curlftpfs { };
1267
1268