Fixed meta.license: s/licence/license

This commit is contained in:
Pascal Wittmann 2015-05-30 15:14:10 +02:00
parent dbfaf1c27c
commit 1d30557516
6 changed files with 11 additions and 11 deletions

View File

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode";
# In lieu of a licence: # In lieu of a license:
# Fonts in this site are offered free for any use; # Fonts in this site are offered free for any use;
# they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed. # they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed.
license = stdenv.lib.licenses.free; license = stdenv.lib.licenses.free;

View File

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
installFlags = "DESTDIR=\${out} PREFIX= LDCONFIG=true"; installFlags = "DESTDIR=\${out} PREFIX= LDCONFIG=true";
meta = { meta = with stdenv.lib; {
description = "Helper library to program the performance monitoring events"; description = "Helper library to program the performance monitoring events";
longDescription = '' longDescription = ''
This package provides a library, called libpfm4 which is used to This package provides a library, called libpfm4 which is used to
@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
events such as those provided by the Performance Monitoring Unit events such as those provided by the Performance Monitoring Unit
(PMU) of modern processors. (PMU) of modern processors.
''; '';
licence = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.pierron ]; maintainers = [ maintainers.pierron ];
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }

View File

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
installPhase = ''scons install''; installPhase = ''scons install'';
meta = { meta = {
licence = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
}; };
} }

View File

@ -11,7 +11,7 @@ stdenv.mkDerivation {
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
licence = stdenv.lib.licenses.unfree; license = stdenv.lib.licenses.unfree;
}; };
src = fetchurl { src = fetchurl {

View File

@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
This package currently contains all of the screensavers from the This package currently contains all of the screensavers from the
original collection, plus a few others. original collection, plus a few others.
''; '';
licence = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
}; };
} }

View File

@ -45,7 +45,7 @@ in stdenv.mkDerivation rec {
--replace "self.cert_dir" "root_prefix + self.cert_dir" --replace "self.cert_dir" "root_prefix + self.cert_dir"
''; '';
meta = { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;
description = "A multilayer virtual switch"; description = "A multilayer virtual switch";
longDescription = longDescription =
@ -60,6 +60,6 @@ in stdenv.mkDerivation rec {
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V. to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
''; '';
homepage = "http://openvswitch.org/"; homepage = "http://openvswitch.org/";
licence = "Apache 2.0"; license = licenses.asl20;
}; };
} }