ghostscript: fix infinite recursion in meta (sorry for that)

This commit is contained in:
Vladimír Čunát 2013-01-31 13:21:21 +01:00
parent a1cc25d530
commit 539d9bc1af

View file

@ -9,7 +9,7 @@ assert x11Support -> x11 != null;
assert cupsSupport -> cups != null;
let
meta = {
meta_common = {
homepage = "http://www.gnu.org/software/ghostscript/";
description = "GNU Ghostscript, a PostScript interpreter";
@ -35,7 +35,7 @@ let
sha256 = "0zqa6ggbkdqiszsywgrra4ij0sddlmrfa50bx2mh568qid4ga0a2";
};
inherit meta;
meta = meta_common;
patches = [ ./purity.patch ];
};
@ -45,7 +45,7 @@ let
url = "http://downloads.ghostscript.com/public/${name}.tar.bz2";
sha256 = "014f10rxn4ihvcr1frby4szd1jvkrwvmdhnbivpp55c9fssx3b05";
};
meta = meta // {
meta = meta_common // {
homepage = "http://www.ghostscript.com/";
description = "GPL Ghostscript, a PostScript interpreter";
};