Fix some issues in my packages reported by nixpkgs-lint.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user