Tidy up Nix expression for Racket.

Patch by Karn Kallio <tierpluspluslists@gmail.com>.

svn path=/nixpkgs/trunk/; revision=24085
This commit is contained in:
Ludovic Courtès 2010-10-05 16:00:10 +00:00
parent a6db62e721
commit 01955a51a2

View File

@ -1,20 +1,6 @@
{ stdenv { stdenv, fetchurl, cairo, file, libjpeg
, fetchurl , libpng, libtool, libXaw, libXext, libXft, libXrender
, cairo , libXt, libXmu, mesa, pkgconfig, which } :
, coreutils
, file
, libjpeg
, libpng
, libtool
, libXaw
, libXext
, libXft
, libXrender
, libXt
, libXmu
, mesa
, pkgconfig
, which } :
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "racket"; name = "racket";
@ -27,7 +13,6 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ cairo buildInputs = [ cairo
coreutils
file file
libjpeg libjpeg
libpng libpng
@ -64,7 +49,8 @@ stdenv.mkDerivation rec {
''; '';
homepage = http://racket-lang.org/; homepage = http://racket-lang.org/;
license = "LGPL"; license = stdenv.lib.licenses.lgpl2Plus;
platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = [ stdenv.lib.maintainers.kkallio ];
platforms = stdenv.lib.platforms.linux;
}; };
} }