summary refs log tree commit diff
path: root/pkgs/development/tools/haskell/uuagc
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2008-01-23 08:36:03 +0000
committerAndres Löh <mail@andres-loeh.de>2008-01-23 08:36:03 +0000
commit1e1707f61cd74baf8798848a98abc578dbca94a8 (patch)
tree8b6db2e17aad3a6271f943330e8cc23811169caa /pkgs/development/tools/haskell/uuagc
parent776393982c036715a3139b0f1d9e2c55b3802082 (diff)
downloadnixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar.gz
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar.bz2
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar.lz
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar.xz
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.tar.zst
nixpkgs-1e1707f61cd74baf8798848a98abc578dbca94a8.zip
* uuagc and uulib are now using ghc-6.8.2
svn path=/nixpkgs/trunk/; revision=10255
Diffstat (limited to 'pkgs/development/tools/haskell/uuagc')
-rw-r--r--pkgs/development/tools/haskell/uuagc/default.nix26
1 files changed, 12 insertions, 14 deletions
diff --git a/pkgs/development/tools/haskell/uuagc/default.nix b/pkgs/development/tools/haskell/uuagc/default.nix
index 519244ae7b8..b45db5f2ea6 100644
--- a/pkgs/development/tools/haskell/uuagc/default.nix
+++ b/pkgs/development/tools/haskell/uuagc/default.nix
@@ -1,14 +1,12 @@
-{stdenv, fetchurl, ghc, uulib}:
-
-stdenv.mkDerivation
-{
-  name = "uuagc-0.9.2";
-
-  src = fetchurl { url = http://www.cs.uu.nl/~ariem/uuagc-0.9.2-src.tar.gz;
-                   md5 = "cbac92287c9c0a858ccbfa37615d9f5f";
-                 };
-
-  buildInputs = [ghc uulib];
-
-  meta = { description = "The UUAG Compiler"; };
-}
+{cabal, uulib}:
+
+cabal.mkDerivation (self : {
+  pname = "uuagc";
+  version = "0.9.5";
+  name = self.fname;
+  sha256 = "c5be435efa609f72c09e175dd5cf7835a060bd7eaf6634ec4cde72ea84b99f25";
+  extraBuildInputs = [uulib];
+  meta = {
+    description = "Attribute Grammar System of Universiteit Utrecht";
+  };
+})