summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2012-05-10 14:23:48 +0000
committerAndres Löh <mail@andres-loeh.de>2012-05-10 14:23:48 +0000
commit50a51c7654558645588e97942e021cfb757b40f5 (patch)
tree73640bddc17a26feb0aa4f9d4affadbed1b52304 /pkgs/development/tools/parsing
parent2720636b7bae3db310ee4b21df471eda8c25c3ec (diff)
downloadnixlib-50a51c7654558645588e97942e021cfb757b40f5.tar
nixlib-50a51c7654558645588e97942e021cfb757b40f5.tar.gz
nixlib-50a51c7654558645588e97942e021cfb757b40f5.tar.bz2
nixlib-50a51c7654558645588e97942e021cfb757b40f5.tar.lz
nixlib-50a51c7654558645588e97942e021cfb757b40f5.tar.xz
nixlib-50a51c7654558645588e97942e021cfb757b40f5.tar.zst
nixlib-50a51c7654558645588e97942e021cfb757b40f5.zip
Reverting some more Haskell changes, to make things complete again.
svn path=/nixpkgs/trunk/; revision=34044
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/alex/3.0.1.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/alex/3.0.1.nix b/pkgs/development/tools/parsing/alex/3.0.1.nix
new file mode 100644
index 000000000000..85e0474b7453
--- /dev/null
+++ b/pkgs/development/tools/parsing/alex/3.0.1.nix
@@ -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 ];
+  };
+})