Fix some issues in my packages reported by nixpkgs-lint.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
parent
2c5230cb64
commit
36fca94805
@ -1,7 +1,8 @@
|
|||||||
{ stdenv, coreutils, fetchurl, python, dropbox }:
|
{ stdenv, coreutils, fetchurl, python, dropbox }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "dropbox-cli";
|
# 1.6.0 because it's the only version mentioned in the script
|
||||||
|
name = "dropbox-cli-1.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
# Note: dropbox doesn't version this file. Annoying.
|
# Note: dropbox doesn't version this file. Annoying.
|
||||||
@ -29,7 +30,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://dropbox.com;
|
homepage = http://dropbox.com;
|
||||||
description = "Command line client for the dropbox daemon.";
|
description = "Command line client for the dropbox daemon";
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = stdenv.lib.licenses.gpl3;
|
||||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||||
# NOTE: Dropbox itself only works on linux, so this is ok.
|
# NOTE: Dropbox itself only works on linux, so this is ok.
|
||||||
|
@ -19,10 +19,11 @@ stdenv.mkDerivation rec {
|
|||||||
automake -a
|
automake -a
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Assember for the Atmel AVR microcontroller family";
|
description = "Assember for the Atmel AVR microcontroller family";
|
||||||
homepage = http://avra.sourceforge.net/;
|
homepage = http://avra.sourceforge.net/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -29,9 +29,9 @@ stdenv.mkDerivation {
|
|||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://elixir-lang.org/";
|
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 = ''
|
longDescription = ''
|
||||||
Elixir is a functional, meta-programming
|
Elixir is a functional, meta-programming
|
||||||
@ -41,8 +41,8 @@ stdenv.mkDerivation {
|
|||||||
fault-tolerant applications with hot code upgrades.p
|
fault-tolerant applications with hot code upgrades.p
|
||||||
'';
|
'';
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.linux;
|
license = licenses.epl10;
|
||||||
|
platforms = platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.the-kenny ];
|
maintainers = [ maintainers.the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/rebar/rebar";
|
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 = ''
|
longDescription = ''
|
||||||
rebar is a self-contained Erlang script, so it's easy to
|
rebar is a self-contained Erlang script, so it's easy to
|
||||||
|
@ -8,19 +8,17 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "04k631g9lzvp9xr4sw51xpq1g542np61s1l8fpwx9rbsc8m5l0i6";
|
sha256 = "04k631g9lzvp9xr4sw51xpq1g542np61s1l8fpwx9rbsc8m5l0i6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [];
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
# Manually copy, make install copies to /usr/local/bin
|
# Manually copy, make install copies to /usr/local/bin
|
||||||
mkdir -pv $out/bin/
|
mkdir -pv $out/bin/
|
||||||
cp stm32flash $out/bin/
|
cp stm32flash $out/bin/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Open source flash program for the STM32 ARM processors using the ST bootloader.";
|
description = "Open source flash program for the STM32 ARM processors using the ST bootloader";
|
||||||
homepage = https://code.google.com/p/stm32flash/;
|
homepage = https://code.google.com/p/stm32flash/;
|
||||||
license = "GPLv2";
|
license = "GPLv2";
|
||||||
platforms = stdenv.lib.platforms.all; # Should work on all platforms
|
platforms = platforms.all; # Should work on all platforms
|
||||||
maintainers = [ stdenv.lib.maintainers.the-kenny ];
|
maintainers = [ maintainers.the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
|||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Stow is a tool for managing the installation of multiple software packages in the same run-time directory tree.";
|
description = "A tool for managing the installation of multiple software packages in the same run-time directory tree";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
GNU Stow is a symlink farm manager which takes distinct packages
|
GNU Stow is a symlink farm manager which takes distinct packages
|
||||||
|
Loading…
x
Reference in New Issue
Block a user