summary refs log tree commit diff
path: root/pkgs/tools/misc/cunit/default.nix
blob: aa586945cb91b8ff32b376274a9110ceddd62be8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "CUnit-2.1-2";

  src = fetchurl {
    url = "mirror://sourceforge/cunit/${name}-src.tar.bz2";
    sha256 = "1slb2sybv886ys0qqikb8lzn0h9jcqfrv64lakdxmqbgncq5yw0z";
  };

  meta = {
    description = "A Unit Testing Framework for C";

    longDescription = ''
      CUnit is a lightweight system for writing, administering, and running
      unit tests in C.  It provides C programmers a basic testing functionality
      with a flexible variety of user interfaces.
    '';

    homepage = http://cunit.sourceforge.net/;

    license = "lgpl";

    maintainers = [ stdenv.lib.maintainers.shlevy ];
  };
}