21b26aef25
svn path=/nixpkgs/trunk/; revision=28583
20 lines
584 B
Nix
20 lines
584 B
Nix
{cabal, perl}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "alex";
|
|
version = "2.3.2"; # Haskell Platform 2010.1.0.0
|
|
name = self.fname;
|
|
sha256 = "6715a4c27b15a74d8f31cbb6a7d654b9cb6766d74980c75b65dee7c627049f43";
|
|
extraBuildInputs = [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
|
|
];
|
|
};
|
|
})
|