fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / cm / cmocka / package.nix
blob74de381fbe52febbf017bc12e4304dec1cdec2bb
2   fetchurl,
3   lib,
4   stdenv,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "cmocka";
10   majorVersion = "1.1";
11   version = "${majorVersion}.7";
13   src = fetchurl {
14     url = "https://cmocka.org/files/${majorVersion}/cmocka-${version}.tar.xz";
15     sha256 = "sha256-gQVw6wuNZIBDMfgrKf9Hx5DOnNaxY+mNR6SAcEfsrYI=";
16   };
18   patches = [
19     ./uintptr_t.patch
20   ];
22   nativeBuildInputs = [ cmake ];
24   cmakeFlags =
25     lib.optional doCheck "-DUNIT_TESTING=ON"
26     ++ lib.optional stdenv.hostPlatform.isStatic "-DBUILD_SHARED_LIBS=OFF";
28   doCheck = true;
30   meta = with lib; {
31     description = "Lightweight library to simplify and generalize unit tests for C";
32     longDescription = ''
33       There are a variety of C unit testing frameworks available however
34       many of them are fairly complex and require the latest compiler
35       technology.  Some development requires the use of old compilers which
36       makes it difficult to use some unit testing frameworks. In addition
37       many unit testing frameworks assume the code being tested is an
38       application or module that is targeted to the same platform that will
39       ultimately execute the test.  Because of this assumption many
40       frameworks require the inclusion of standard C library headers in the
41       code module being tested which may collide with the custom or
42       incomplete implementation of the C library utilized by the code under
43       test.
45       Cmocka only requires a test application is linked with the standard C
46       library which minimizes conflicts with standard C library headers.
47       Also, CMocka tries to avoid the use of some of the newer features of
48       C compilers.
50       This results in CMocka being a relatively small library that can be
51       used to test a variety of exotic code. If a developer wishes to
52       simply test an application with the latest compiler then other unit
53       testing frameworks may be preferable.
55       This is the successor of Google's Cmockery.
56     '';
57     homepage = "https://cmocka.org/";
58     license = licenses.asl20;
59     platforms = platforms.all;
60     maintainers = with maintainers; [
61       kragniz
62       rasendubi
63     ];
64   };