summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/hammer/default.nix
blob: 84e146789244a7eb29d4a75c030f82626f739334 (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
{ stdenv, fetchgit, glib, pkgconfig, python, scons, pythonPackages }:

stdenv.mkDerivation rec {
  name = "hammer-${version}";
  version = "e7aa734";

  src = fetchgit {
    url = "git://github.com/UpstandingHackers/hammer";
    sha256 = "01l0wbhz7dymxlndacin2vi8sqwjlw81ds2i9xyi200w51nsdm38";
    rev = "47f34b81e4de834fd3537dd71928c4f3cdb7f533";
  };

  buildInputs = [ glib pkgconfig python scons ];
  buildPhase = "scons prefix=$out";
  installPhase = "scons prefix=$out install";

  meta = with stdenv.lib; {
    description = "A bit-oriented parser combinator library";
    longDescription = ''
      Hammer is a parsing library. Like many modern parsing libraries,
      it provides a parser combinator interface for writing grammars
      as inline domain-specific languages, but Hammer also provides a
      variety of parsing backends. It's also bit-oriented rather than
      character-oriented, making it ideal for parsing binary data such
      as images, network packets, audio, and executables.
    '';
    homepage = https://github.com/UpstandingHackers/hammer;
    license = licenses.gpl2;
    platforms = platforms.linux;
    };
}