about summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/bnfc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/haskell/bnfc/default.nix')
-rw-r--r--pkgs/development/tools/haskell/bnfc/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/tools/haskell/bnfc/default.nix b/pkgs/development/tools/haskell/bnfc/default.nix
new file mode 100644
index 0000000000000..7f7ba00c056e4
--- /dev/null
+++ b/pkgs/development/tools/haskell/bnfc/default.nix
@@ -0,0 +1,20 @@
+{stdenv, fetchurl, ghc}:
+
+stdenv.mkDerivation {
+  name = "bnfc-2.4-beta1";
+
+  src = fetchurl {
+    url = "https://svn.spraakdata.gu.se/clt/release/bnfc_2.4_beta_1.tgz";
+    sha256 = "1njnck3m6qpp0qw11v1chf6m217j8f85bsgjl7zcpb4py18mjjrx";
+  };
+
+  buildInputs = [ghc];
+
+  preConfigure = "cd source";
+
+  meta = {
+    description = "Compiler construction tool generating a compiler front-end from a Labelled BNF grammar";
+    platforms = stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ stdenv.lib.maintainers.simons ];
+  };
+}