1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Transformed meta.maintainers attributes to lists

This commit is contained in:
Pascal Wittmann 2015-09-17 15:32:50 +02:00
parent cd73f0ad69
commit edee7f1720
3 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "A Faust implementation of a 1969 designed Yamaha combo organ, the YC-20";
homepage = https://github.com/sampov2/foo-yc20;
license = "BSD";
maintainers = stdenv.lib.maintainers.magnetophon;
maintainers = [ stdenv.lib.maintainers.magnetophon ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -29,5 +29,5 @@ mkDerivation rec {
homepage = "https://github.com/NorfairKing/super-user-spark";
description = "A safe way to never worry about your beautifully configured system again";
platforms = ghc.meta.platforms;
maintainers = stdenv.lib.maintainers.badi;
maintainers = [ stdenv.lib.maintainers.badi ];
}

View file

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Lightweight Virtualization on OS X Based on bhyve";
homepage = "https://github.com/mist64/xhyve";
maintainers = lib.maintainers.lnl7;
maintainers = [ lib.maintainers.lnl7 ];
platforms = lib.platforms.darwin;
};
}