about summary refs log tree commit diff
path: root/pkgs/tools/misc/bcunit/default.nix
blob: b1ca28a7ca9dd10411a070e557e2f3dac9128007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
  };
}