nixpkgs/pkgs/development/tools/parsing/alex/3.0.1.nix
Peter Simons b5c57b8380 haskell-alex: updated to version 3.0.1
svn path=/nixpkgs/trunk/; revision=28551
2011-08-13 23:38:30 +00:00

17 lines
457 B
Nix

{ cabal, QuickCheck, perl }:
cabal.mkDerivation (self: {
pname = "alex";
version = "3.0.1";
sha256 = "1w7s9kzgr4kfh6cyhb4qkvxwy9gcw3xa1d2k5dy575k3wk73awkj";
isLibrary = false;
isExecutable = true;
buildDepends = [ QuickCheck ];
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;
};
})