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

20 lines
586 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2013-12-02 20:41:51 +01:00
{ cabal, happy, perl, QuickCheck }:
2013-09-17 11:28:29 +02:00
cabal.mkDerivation (self: {
pname = "alex";
2013-12-02 20:41:51 +01:00
version = "3.1.3";
sha256 = "14hajxpqb6va5mclp2k682bgw9sbmd372vw41kq5aq815bkschcd";
2013-09-17 11:28:29 +02:00
isLibrary = false;
isExecutable = true;
buildDepends = [ QuickCheck ];
2013-12-02 20:41:51 +01:00
buildTools = [ happy perl ];
2013-09-17 11:28:29 +02:00
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;
};
})