Add myself as maintainer for several packages

And set missing meta.platforms for the packages I've added earlier.
This commit is contained in:
Bjørn Forsman
2013-05-20 19:33:18 +02:00
parent eaeb0c9c7d
commit 05bb66ce20
20 changed files with 59 additions and 33 deletions

View File

@@ -31,7 +31,7 @@ buildPythonPackage (rec {
cp docs/buildslave.1 "$out/share/man/man1"
'';
meta = {
meta = with stdenv.lib; {
homepage = http://buildbot.net/;
license = "GPLv2+";
@@ -60,5 +60,7 @@ buildPythonPackage (rec {
encouraging them to be more careful about testing before checking
in code.
'';
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.all;
};
})

View File

@@ -49,7 +49,7 @@ buildPythonPackage (rec {
cp docs/buildbot.1 "$out/share/man/man1"
'';
meta = {
meta = with stdenv.lib; {
homepage = http://buildbot.net/;
license = "GPLv2+";
@@ -80,7 +80,7 @@ buildPythonPackage (rec {
in code.
'';
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.all;
maintainers = with maintainers; [ ludo bjornfor ];
platforms = platforms.all;
};
})

View File

@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
cp doc/manual.html $out/share/doc/ninja/
'';
meta = {
meta = with stdenv.lib; {
description = "Small build system with a focus on speed";
longDescription = ''
Ninja is a small build system with a focus on speed. It differs from
@@ -35,6 +35,8 @@ stdenv.mkDerivation rec {
to run builds as fast as possible.
'';
homepage = http://martine.github.io/ninja/;
license = stdenv.lib.licenses.asl20;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = maintainers.bjornfor;
};
}

View File

@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
'';
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
maintainers = with stdenv.lib.maintainers; [ viric bjornfor ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@@ -22,9 +22,11 @@ stdenv.mkDerivation {
install -Dm755 bin/release/premake4 $out/bin/premake4
'';
meta = {
meta = with stdenv.lib; {
homepage = http://industriousone.com/premake;
description = "A simple build configuration and project generation tool using lua";
license = stdenv.lib.licenses.bsd3;
platforms = platforms.linux;
maintainers = maintainers.bjornfor;
};
}

View File

@@ -18,8 +18,10 @@ stdenv.mkDerivation {
buildInputs = [ autoconf automake libtool pkgconfig libusb1 ];
preConfigure = "./autogen.sh";
meta = {
meta = with stdenv.lib; {
description = "In-circuit debug and programming for ST-Link devices";
license = stdenv.lib.licenses.bsd3;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = maintainers.bjornfor;
};
}

View File

@@ -12,9 +12,11 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses libpcap ];
meta = {
meta = with stdenv.lib; {
description = "libpcap based program for live TCP connection monitoring";
homepage = http://www.rhythm.cx/~steve/devel/tcptrack/; # dead link
license = stdenv.lib.licenses.lgpl21;
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = maintainers.bjornfor;
};
}