Reverting some more Haskell changes, to make things complete again.

svn path=/nixpkgs/trunk/; revision=34044
This commit is contained in:
Andres Löh
2012-05-10 14:23:48 +00:00
parent 2720636b7b
commit 50a51c7654
3 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, perl, QuickCheck }:
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;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})