summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/alex/2.3.2.nix
blob: e00ec723151fbaf3aae5e446af6623f0c9378f13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, Cabal, perl }:

cabal.mkDerivation (self: {
  pname = "alex";
  version = "2.3.2";
  sha256 = "6715a4c27b15a74d8f31cbb6a7d654b9cb6766d74980c75b65dee7c627049f43";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [ Cabal ];
  buildTools = [ perl ];
  meta = {
    homepage = "http://www.haskell.org/alex/";
    description = "Alex is a tool for generating lexical analysers in Haskell";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})