mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Turned some meta.maintainers into lists
This commit is contained in:
parent
67fe5d46d4
commit
bb9e9cc3f8
@ -19,11 +19,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configurePhase = "export CC=${CC}";
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A console front-end for Pandora.com";
|
||||
homepage = "http://6xq.net/projects/pianobar/";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.mit; # expat version
|
||||
maintainers = stdenv.lib.maintainers.eduarrrd;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.mit; # expat version
|
||||
maintainers = with maintainers; [ eduarrrd ];
|
||||
};
|
||||
}
|
||||
|
@ -21,6 +21,6 @@ stdenv.mkDerivation {
|
||||
description = "Perl extensions for the rxvt-unicode terminal emulator";
|
||||
homepage = "https://github.com/muennich/urxvt-perls";
|
||||
license = licenses.gpl2;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -16,6 +16,6 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)";
|
||||
homepage = "https://github.com/mina86/urxvt-tabbedex";
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -27,6 +27,6 @@ stdenv.mkDerivation {
|
||||
description = "LaTeX rendering plugin for Pidgin IM";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -60,11 +60,11 @@ in stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Standard ML of New Jersey, a compiler";
|
||||
homepage = http://smlnj.org;
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = licenses.bsd3;
|
||||
platforms = [ "i686-linux" ];
|
||||
maintainers = stdenv.lib.maintainers.thoughtpolice;
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
};
|
||||
}
|
||||
|
@ -26,6 +26,6 @@ stdenv.mkDerivation {
|
||||
description = "Library to manage system processes";
|
||||
license = "boost-license";
|
||||
platforms = platforms.unix;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/zeromq/cppzmq;
|
||||
license = licenses.bsd2;
|
||||
description = "C++ binding for 0MQ";
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/floitsch/double-conversion;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.mit;
|
||||
# 32bit is not supported: https://github.com/facebook/folly/issues/103
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://gcc.gnu.org/;
|
||||
license = licenses.lgpl2;
|
||||
description = "Collection of subroutines used by various GNU programs";
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ pkgconfig libmnl ];
|
||||
propagatedBuildInputs = [ libnfnetlink ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Userspace library providing an API to the in-kernel connection tracking state table";
|
||||
longDescription = ''
|
||||
libnetfilter_conntrack is a userspace library providing a programming interface (API) to the
|
||||
@ -20,9 +20,9 @@ stdenv.mkDerivation rec {
|
||||
by conntrack-tools among many other applications
|
||||
'';
|
||||
homepage = http://netfilter.org/projects/libnetfilter_conntrack/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = stdenv.lib.maintainers.nckx;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
||||
|
@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://sourceforge.net/projects/libxls/;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://qpdf.sourceforge.net/;
|
||||
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
|
||||
license = licenses.artistic2;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://sourceforge.net/projects/xlslib/files/;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
|
||||
contact with explosions, to zero (the damage dealt to the attacked
|
||||
hedgehog or hedgehogs after a player's or CPU turn is shown only when
|
||||
all movement on the battlefield has ceased).'';
|
||||
maintainers = maintainers.kragniz;
|
||||
maintainers = with maintainers; [ kragniz ];
|
||||
platforms = ghc.meta.platforms;
|
||||
};
|
||||
}
|
||||
|
@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://dev.haeleth.net/onscripter.shtml";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
Sails is a simulator designed to test the AI of autonomous sailing
|
||||
robots. It emulates the basic physics of sailing a small single sail
|
||||
boat'';
|
||||
maintainers = maintainers.kragniz;
|
||||
maintainers = with maintainers; [ kragniz ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -30,6 +30,6 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = https://github.com/amonakov/primus;
|
||||
description = "Faster OpenGL offloading for Bumblebee";
|
||||
maintainers = maintainers.coconnor;
|
||||
maintainers = with maintainers; [ coconnor ];
|
||||
};
|
||||
}
|
||||
|
@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
|
||||
description = "Script to extract RPM archives";
|
||||
platforms = platforms.all;
|
||||
license = licenses.gpl2;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = http://lbzip2.org/;
|
||||
description = "parallel bzip2 compression utility";
|
||||
license = licenses.gpl3;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Script to update your /etc/resolv.conf with DNS settings that come from the received push dhcp-options";
|
||||
homepage = https://github.com/masterkorp/openvpn-update-resolv-conf/;
|
||||
maintainers = maintainers.abbradar;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user