nixpkgs/pkgs/development/tools/parsing/alex/3.0.5.nix

19 lines
556 B
Nix
Raw Normal View History

2013-02-20 11:35:36 +01:00
{ cabal, perl, QuickCheck }:
cabal.mkDerivation (self: {
pname = "alex";
2013-03-11 11:03:29 +01:00
version = "3.0.5";
sha256 = "0ncnp7cl7dlfcrwzzcp8j59i9j5r66wim1yib9g3b3jkl0bn8cn3";
2013-02-20 11:35:36 +01:00
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 ];
};
})