summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2005-12-22 07:39:06 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2005-12-22 07:39:06 +0000
commit83afd0c173a475790ec0ee89e0fab231a21fc63c (patch)
treefec1bc9b1f6ed98c83be80c21c6fc18319b0d01d /pkgs/system/all-packages-generic.nix
parentc564d6dbb2b72d70f6f4593cd329fcb4ce931965 (diff)
downloadnixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar.gz
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar.bz2
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar.lz
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar.xz
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.tar.zst
nixpkgs-83afd0c173a475790ec0ee89e0fab231a21fc63c.zip
Added Transformers 0.4
svn path=/nixpkgs/trunk/; revision=4405
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix20
1 files changed, 19 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 682cc5a159a..44f02b383ba 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -589,7 +589,7 @@ rec {
   };
 
   strategoxt = (import ../development/compilers/strategoxt) {
-    inherit fetchurl pkgconfig stdenv sdf aterm;
+    inherit fetchurl stdenv pkgconfig sdf aterm;
   };
 
   strategoxtUtils = (import ../development/compilers/strategoxt/utils) {
@@ -600,6 +600,24 @@ rec {
     inherit fetchurl stdenv aterm tetex hevea sdf strategoxt;
   };
 
+  transformers = (import ../development/compilers/transformers) {
+    inherit fetchurl stdenv pkgconfig sdf;
+    aterm = aterm23x;
+
+    strategoxt = (import ../development/compilers/strategoxt/strategoxt-0.14.nix) {
+      inherit fetchurl pkgconfig stdenv sdf;
+      aterm = aterm23x;
+    };
+
+    stlport =  (import ../development/libraries/stlport) {
+      inherit fetchurl stdenv;
+    };
+  };
+
+  aterm23x = (import ../development/libraries/aterm/aterm-2.3.1.nix) {
+    inherit fetchurl stdenv;
+  };
+
   ghcboot = (import ../development/compilers/ghc/boot.nix) {
     inherit fetchurl stdenv perl ncurses;
     readline = readline4;