Remove unneeded 'with's from meta.platforms

This commit is contained in:
Pascal Wittmann
2015-11-25 23:06:09 +01:00
parent 380ed0229c
commit 6d25c0f1b3
10 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Mail sorter for Maildirs";
maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux;
platforms = platforms.linux;
};
passthru = {
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
description = "Attachment extractor for MIME messages";
maintainers = with maintainers; [ raskin ];
homepage = http://www.pldaniels.com/ripmime/;
platforms = with platforms; linux;
platforms = platforms.linux;
};
passthru = {
+1 -1
View File
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "TFTP tools - a lot of fixes on top of BSD TFTP";
maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux;
platforms = platforms.linux;
license = licenses.bsd3;
homepage = http://www.kernel.org/pub/software/network/tftp/;
};