Fix typos

svn path=/nixpkgs/trunk/; revision=17223
This commit is contained in:
Michael Raskin 2009-09-17 10:26:55 +00:00
parent b9e92b0e8f
commit 0af49d8e96
3 changed files with 3 additions and 3 deletions

View File

@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
homepage = http://www.gnu.org/software/emacs/; homepage = http://www.gnu.org/software/emacs/;
license = "GPLv3+"; license = "GPLv3+";
platforms = linux; # GTK & co. are needed. platforms = stdenv.lib.platforms.linux; # GTK & co. are needed.
}; };
} }

View File

@ -67,6 +67,6 @@ stdenv.mkDerivation rec {
license = "GPLv3+"; license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ]; maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = linux; # GTK & co. are needed. platforms = stdenv.lib.platforms.linux; # GTK & co. are needed.
}; };
} }

View File

@ -53,6 +53,6 @@ stdenv.mkDerivation {
homepage = http://www.emacswiki.org/cgi-bin/wiki/XftGnuEmacs; homepage = http://www.emacswiki.org/cgi-bin/wiki/XftGnuEmacs;
license = "GPLv3+"; license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ]; maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = linux; # GTK & co. are needed. platforms = stdenv.lib.platforms.linux; # GTK & co. are needed.
}; };
} }