summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/alex
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-04-01 10:56:48 +0000
committerAndres Löh <mail@andres-loeh.de>2010-04-01 10:56:48 +0000
commit93702256634630207cf3e0f92178412017002d56 (patch)
treee90a09aa1205f326431718d1986487b12275a2ac /pkgs/development/tools/parsing/alex
parent50b5ca25d3e611b7259654cf25c09bcbc5a281e1 (diff)
Haskell Platform 2010.1.0.0
svn path=/nixpkgs/trunk/; revision=20904
Diffstat (limited to 'pkgs/development/tools/parsing/alex')
-rw-r--r--pkgs/development/tools/parsing/alex/2.3.2.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/alex/2.3.2.nix b/pkgs/development/tools/parsing/alex/2.3.2.nix
new file mode 100644
index 0000000000000..565ecf2f167c6
--- /dev/null
+++ b/pkgs/development/tools/parsing/alex/2.3.2.nix
@@ -0,0 +1,12 @@
+{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 = {
+    description = "A lexical analyser generator for Haskell";
+  };
+})