about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/sparse/default.nix
blob: f860f05c36a8757e8dc3e20200afb98b56141afa (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
28
29
30
31
32
33
34
35
36
37
38
{ fetchurl, stdenv, pkgconfig }:

stdenv.mkDerivation rec {
  name = "sparse-0.4.4";

  src = fetchurl {
    url = "mirror://kernel/software/devel/sparse/dist/${name}.tar.gz";
    sha256 = "5ad02110130fd8f8d82f2b030de5f2db6f924fd805593a5b8be8072a620414c6";
  };

  preConfigure = ''
    sed -i "Makefile" \
        -e "s|^PREFIX *=.*$|PREFIX = $out|g"
  '';

  buildInputs = [ pkgconfig ];

  doCheck = true;

  meta = {
    description = "Sparse, a semantic parser for C";

    longDescription = ''
      Sparse, the semantic parser, provides a compiler frontend
      capable of parsing most of ANSI C as well as many GCC
      extensions, and a collection of sample compiler backends,
      including a static analyzer also called "sparse".  Sparse
      provides a set of annotations designed to convey semantic
      information about types, such as what address space pointers
      point to, or what locks a function acquires or releases.
    '';

    homepage = http://www.kernel.org/pub/software/devel/sparse/;

    # See http://www.opensource.org/licenses/osl.php .
    license = "Open Software License v1.1";
  };
}