2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, perl, QuickCheck }:
|
2011-08-14 00:38:30 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "alex";
|
2012-05-10 11:28:49 +01:00
|
|
|
version = "3.0.2";
|
|
|
|
sha256 = "0r1i10i9svnd0ayd229d8hgndgc6q8ghabw6zzghwviw5hs36zlr";
|
2011-08-14 00:38:30 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ QuickCheck ];
|
2011-08-14 00:38:30 +01:00
|
|
|
buildTools = [ perl ];
|
2013-02-24 21:22:02 +00:00
|
|
|
doCheck = false;
|
2011-08-14 00:38:30 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.haskell.org/alex/";
|
|
|
|
description = "Alex is a tool for generating lexical analysers in Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-15 12:27:02 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-14 00:38:30 +01:00
|
|
|
};
|
|
|
|
})
|