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

@@ -18,7 +18,7 @@ stdenv.mkDerivation {
meta = {
homepage = "https://github.com/rebar/rebar";
description = "Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases.";
description = "Erlang build tool that makes it easy to compile and test Erlang applications, port drivers and releases";
longDescription = ''
rebar is a self-contained Erlang script, so it's easy to

View File

@@ -8,19 +8,17 @@ stdenv.mkDerivation {
sha256 = "04k631g9lzvp9xr4sw51xpq1g542np61s1l8fpwx9rbsc8m5l0i6";
};
buildInputs = [];
installPhase = ''
# Manually copy, make install copies to /usr/local/bin
mkdir -pv $out/bin/
cp stm32flash $out/bin/
'';
meta = {
description = "Open source flash program for the STM32 ARM processors using the ST bootloader.";
meta = with stdenv.lib; {
description = "Open source flash program for the STM32 ARM processors using the ST bootloader";
homepage = https://code.google.com/p/stm32flash/;
license = "GPLv2";
platforms = stdenv.lib.platforms.all; # Should work on all platforms
maintainers = [ stdenv.lib.maintainers.the-kenny ];
platforms = platforms.all; # Should work on all platforms
maintainers = [ maintainers.the-kenny ];
};
}