2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, Cabal, perl }:
|
2008-01-22 22:43:38 +00:00
|
|
|
|
2011-08-23 11:35:49 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2008-01-22 22:43:38 +00:00
|
|
|
pname = "alex";
|
2011-08-23 11:35:49 +01:00
|
|
|
version = "2.3.1";
|
2009-04-19 14:38:34 +01:00
|
|
|
sha256 = "cdd42fd992a72fedeff1f38debc21aa315d90dc070f0945d7819c0bccd549a44";
|
2011-08-23 11:35:49 +01:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ Cabal ];
|
2011-08-23 11:35:49 +01:00
|
|
|
buildTools = [ perl ];
|
2008-01-22 22:43:38 +00:00
|
|
|
meta = {
|
2011-08-15 12:27:02 +01: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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2007-12-11 13:38:48 +00:00
|
|
|
};
|
2008-01-22 22:43:38 +00:00
|
|
|
})
|