summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:30:57 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:30:57 +0000
commitb3cd1e644ae6443211e04ab0e62d6362a6d6214a (patch)
tree751bea46a940abb63076a59e6f3fd9b36b90fc72 /pkgs/development/compilers
parent0aef28a212f3b148f8d3b9fbc824bd4937b6ff7d (diff)
downloadnixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar.gz
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar.bz2
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar.lz
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar.xz
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.tar.zst
nixpkgs-b3cd1e644ae6443211e04ab0e62d6362a6d6214a.zip
Changed version-related syntax in python, gettext and ocaml
svn path=/nixpkgs/trunk/; revision=10316
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ocaml/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/compilers/ocaml/default.nix b/pkgs/development/compilers/ocaml/default.nix
index 74d1378968c..f058db31364 100644
--- a/pkgs/development/compilers/ocaml/default.nix
+++ b/pkgs/development/compilers/ocaml/default.nix
@@ -1,7 +1,7 @@
 args:
-rec {
-	default = v_3_09_1;
-	v_3_08_0 = import ./3.08.0.nix (args // {stdenv = args.stdenv34;});
-	v_3_09_1 = import ./3.09.1.nix args;
-	v_3_10_0 = import ./3.10.0.nix (args // {stdenv = args.stdenvUsingSetupNew2;});
-}
+args.stdenv.lib.listOfListsToAttrs [
+	[ "3.08.0" (import ./3.08.0.nix (args // {stdenv = args.stdenv34;})) ]
+	[ "3.09.1" (import ./3.09.1.nix args) ]
+	[ "3.10.0" (import ./3.10.0.nix (args // {stdenv = args.stdenvUsingSetupNew2;})) ]
+	[ "default" (import ./3.09.1.nix args) ]
+]