2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, perl }:
|
2010-04-01 14:56:48 +04:00
|
|
|
|
2011-08-23 14:35:49 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2010-04-01 14:56:48 +04:00
|
|
|
pname = "alex";
|
2011-08-23 14:35:49 +04:00
|
|
|
version = "2.3.2";
|
2010-04-01 14:56:48 +04:00
|
|
|
sha256 = "6715a4c27b15a74d8f31cbb6a7d654b9cb6766d74980c75b65dee7c627049f43";
|
2011-08-23 14:35:49 +04:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildTools = [ perl ];
|
2010-04-01 14:56:48 +04:00
|
|
|
meta = {
|
2011-08-15 15:27:02 +04:00
|
|
|
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;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-04-01 14:56:48 +04:00
|
|
|
};
|
|
|
|
})
|