Fix some issues in my packages reported by nixpkgs-lint.

Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
Moritz Ulrich
2013-09-26 21:37:49 +02:00
parent 2c5230cb64
commit 36fca94805
6 changed files with 18 additions and 18 deletions

View File

@@ -29,9 +29,9 @@ stdenv.mkDerivation {
done
'';
meta = {
meta = with stdenv.lib; {
homepage = "http://elixir-lang.org/";
description = "Elixir is a functional, meta-programming aware language built on top of the Erlang VM.";
description = "A functional, meta-programming aware language built on top of the Erlang VM";
longDescription = ''
Elixir is a functional, meta-programming
@@ -41,8 +41,8 @@ stdenv.mkDerivation {
fault-tolerant applications with hot code upgrades.p
'';
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.the-kenny ];
license = licenses.epl10;
platforms = platforms.linux;
maintainers = [ maintainers.the-kenny ];
};
}