summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorEelco Visser <visser@acm.org>2003-12-25 12:21:41 +0000
committerEelco Visser <visser@acm.org>2003-12-25 12:21:41 +0000
commit5fb4265643fa367e9716c550026760ffd3249765 (patch)
tree65e4ac1ea2f334bea9d0400df70e6a5c8f752b2c /pkgs/development
parente2570fd7b70273c4347d3b45307b0c4be57ceb82 (diff)
clone trunk.nix for building distribution
svn path=/nixpkgs/trunk/; revision=602
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/strategoxt/dist.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/compilers/strategoxt/dist.nix b/pkgs/development/compilers/strategoxt/dist.nix
new file mode 100644
index 0000000000000..0e78d79f57df9
--- /dev/null
+++ b/pkgs/development/compilers/strategoxt/dist.nix
@@ -0,0 +1,19 @@
+{stdenv, fetchsvn, autotools, which, aterm, sdf}: derivation {
+  name = "strategoxt-0.9.4-4792";
+  system = stdenv.system;
+  builder = ./svnbuilder.sh;
+  src = fetchsvn {
+    url = https://svn.cs.uu.nl:12443/repos/StrategoXT/trunk/StrategoXT;
+    rev = "4792";
+  };
+  stdenv = stdenv;
+
+  make     = autotools.make;
+  automake = autotools.automake;
+  autoconf = autotools.autoconf;
+  libtool  = autotools.libtool;
+  which    = which;
+
+  aterm = aterm;
+  sdf = sdf;
+}