From 1c1967a9a13c262007def728b0699b27df7f8984 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 19 Apr 2009 10:26:45 +0000 Subject: [PATCH] * Call the wrapper "ghc-wrapper". svn path=/nixpkgs/trunk/; revision=15143 --- pkgs/development/compilers/ghc/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ghc/wrapper.nix b/pkgs/development/compilers/ghc/wrapper.nix index e0b705265013..932cf6343018 100644 --- a/pkgs/development/compilers/ghc/wrapper.nix +++ b/pkgs/development/compilers/ghc/wrapper.nix @@ -1,7 +1,7 @@ {stdenv, ghc}: stdenv.mkDerivation { - name = "${ghc.name}-wrapper"; + name = "ghc-wrapper-${ghc.version}"; propagatedBuildInputs = [ghc];