Fixed some licenses

This commit is contained in:
Pascal Wittmann 2015-06-10 13:00:11 +02:00
parent a1144c5b45
commit 62d62b6588
18 changed files with 60 additions and 60 deletions

View file

@ -69,11 +69,11 @@ stdenv.mkDerivation {
cp ./misc/emacs/* $out/share/emacs/site-lisp/ cp ./misc/emacs/* $out/share/emacs/site-lisp/
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://golang.org/; homepage = http://golang.org/;
description = "The Go Programming language"; description = "The Go Programming language";
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ zef ]; maintainers = with maintainers; [ zef ];
platforms = stdenv.lib.platforms.darwin; platforms = platforms.darwin;
}; };
} }

View file

@ -90,12 +90,12 @@ stdenv.mkDerivation {
cp ./misc/emacs/* $out/share/emacs/site-lisp/ cp ./misc/emacs/* $out/share/emacs/site-lisp/
''; '';
meta = { meta = with stdenv.lib; {
branch = "1.1"; branch = "1.1";
homepage = http://golang.org/; homepage = http://golang.org/;
description = "The Go Programming language"; description = "The Go Programming language";
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ pierron viric ]; maintainers = with maintainers; [ pierron viric ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }

View file

@ -81,12 +81,12 @@ stdenv.mkDerivation {
cp ./misc/emacs/* $out/share/emacs/site-lisp/ cp ./misc/emacs/* $out/share/emacs/site-lisp/
''; '';
meta = { meta = with stdenv.lib; {
branch = "1.2"; branch = "1.2";
homepage = http://golang.org/; homepage = http://golang.org/;
description = "The Go Programming language"; description = "The Go Programming language";
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ pierron viric ]; maintainers = with maintainers; [ pierron viric ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }

View file

@ -102,12 +102,12 @@ stdenv.mkDerivation {
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = { meta = with stdenv.lib; {
branch = "1.3"; branch = "1.3";
homepage = http://golang.org/; homepage = http://golang.org/;
description = "The Go Programming language"; description = "The Go Programming language";
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ cstrahan ]; maintainers = with maintainers; [ cstrahan ];
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
}; };
} }

View file

@ -88,12 +88,12 @@ stdenv.mkDerivation rec {
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = { meta = with stdenv.lib; {
branch = "1.4"; branch = "1.4";
homepage = http://golang.org/; homepage = http://golang.org/;
description = "The Go Programming language"; description = "The Go Programming language";
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ cstrahan wkennington ]; maintainers = with maintainers; [ cstrahan wkennington ];
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
}; };
} }

View file

@ -13,10 +13,10 @@ stdenv.mkDerivation {
mkdir -p $out mkdir -p $out
cp -av * $out cp -av * $out
''; '';
meta = { meta = with stdenv.lib; {
description = "An OSGi gateway"; description = "An OSGi gateway";
homepage = http://felix.apache.org; homepage = http://felix.apache.org;
license = "ASF"; license = licenses.asl20;
maintainers = [ stdenv.lib.maintainers.sander ]; maintainers = [ maintainers.sander ];
}; };
} }

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip, jdk, lib }: { stdenv, fetchurl, unzip, jdk }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "jboss-as-7.1.1.Final"; name = "jboss-as-7.1.1.Final";
@ -16,10 +16,10 @@ stdenv.mkDerivation {
find $out/bin -name \*.sh -print0 | xargs -0 sed -i -e '/#!\/bin\/sh/aJAVA_HOME=${jdk}' find $out/bin -name \*.sh -print0 | xargs -0 sed -i -e '/#!\/bin\/sh/aJAVA_HOME=${jdk}'
''; '';
meta = { meta = with stdenv.lib; {
homepage = "http://www.jboss.org/"; homepage = http://www.jboss.org/;
description = "Open Source J2EE application server"; description = "Open Source J2EE application server";
license = "GPL/LGPL"; license = licenses.lgpl21;
maintainers = [ lib.maintainers.sander ]; maintainers = [ maintainers.sander ];
}; };
} }

View file

@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
buildInputs = [cyrus_sasl libevent]; buildInputs = [cyrus_sasl libevent];
meta = { meta = with stdenv.lib; {
description = "A distributed memory object caching system"; description = "A distributed memory object caching system";
repositories.git = https://github.com/memcached/memcached.git; repositories.git = https://github.com/memcached/memcached.git;
homepage = http://memcached.org/; homepage = http://memcached.org/;
license = "bsd"; license = licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.coconnor ]; maintainers = [ maintainers.coconnor ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }

View file

@ -78,13 +78,13 @@ in
configureFlags = "--enable-agent"; configureFlags = "--enable-agent";
meta = { meta = with stdenv.lib; {
inherit branch; inherit branch;
description = "An enterprise-class open source distributed monitoring solution (client-side agent)"; description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/; homepage = http://www.zabbix.com/;
license = "GPL"; license = licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
}; };
}; };

View file

@ -90,13 +90,13 @@ in
configureFlags = "--enable-agent"; configureFlags = "--enable-agent";
meta = { meta = with stdenv.lib; {
inherit branch; inherit branch;
description = "An enterprise-class open source distributed monitoring solution (client-side agent)"; description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/; homepage = http://www.zabbix.com/;
license = "GPL"; license = licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
}; };
}; };

View file

@ -57,12 +57,12 @@ in
configureFlags = "--enable-agent"; configureFlags = "--enable-agent";
meta = { meta = with stdenv.lib; {
description = "An enterprise-class open source distributed monitoring solution (client-side agent)"; description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/; homepage = http://www.zabbix.com/;
license = "GPL"; license = licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.eelco ]; maintainers = [ maintainers.eelco ];
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
}; };
}; };

View file

@ -20,9 +20,9 @@ stdenv.mkDerivation rec {
cp jars/*.jar $out/share/java cp jars/*.jar $out/share/java
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://jdbc.postgresql.org/; homepage = http://jdbc.postgresql.org/;
description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database"; description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database";
license = "bsd"; license = licenses.bsd3;
}; };
} }

View file

@ -12,9 +12,9 @@ stdenv.mkDerivation rec {
configureFlags = "--with-iodbc=${libiodbc}"; configureFlags = "--with-iodbc=${libiodbc}";
meta = { meta = with stdenv.lib; {
homepage = http://psqlodbc.projects.postgresql.org/; homepage = http://psqlodbc.projects.postgresql.org/;
description = "ODBC driver for PostgreSQL"; description = "ODBC driver for PostgreSQL";
license = "LGPL"; license = licenses.lgpl2;
}; };
} }

View file

@ -9,9 +9,9 @@ stdenv.mkDerivation {
buildInputs = [ lzo ]; buildInputs = [ lzo ];
meta = { meta = with stdenv.lib; {
homepage = http://www.lzop.org; homepage = http://www.lzop.org;
description = "Fast file compressor"; description = "Fast file compressor";
license = "GPL"; license = licenses.gpl2;
}; };
} }

View file

@ -30,9 +30,9 @@ stdenv.mkDerivation rec {
''; '';
}; };
meta = { meta = with stdenv.lib; {
homepage = http://optipng.sourceforge.net/; homepage = http://optipng.sourceforge.net/;
description = "A PNG optimizer"; description = "A PNG optimizer";
license = "bsd"; license = licenses.zlib;
}; };
} }

View file

@ -40,9 +40,9 @@ stdenv.mkDerivation {
--prefix PATH : ${ghostscript}/bin:${pngnq}/bin:${djvulibre}/bin:${unrar}/bin:${optipng}/bin --prefix PATH : ${ghostscript}/bin:${pngnq}/bin:${djvulibre}/bin:${unrar}/bin:${optipng}/bin
''; '';
meta = { meta = with stdenv.lib; {
description = "PDF/DJVU to ebook format converter"; description = "PDF/DJVU to ebook format converter";
homepage = http://www.mobileread.com/forums/showthread.php?t=21906; homepage = http://www.mobileread.com/forums/showthread.php?t=21906;
license = "bsd"; license = licenses.mit;
}; };
} }

View file

@ -20,11 +20,11 @@ stdenv.mkDerivation {
buildInputs = [ libmusclecard pkgconfig pcsclite]; buildInputs = [ libmusclecard pkgconfig pcsclite];
meta = { meta = with stdenv.lib; {
description = "MUSCLE smart card framework - mcard plugin"; description = "MUSCLE smart card framework - mcard plugin";
homepage = http://muscleplugins.alioth.debian.org/; homepage = http://muscleplugins.alioth.debian.org/;
license = "BSD"; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = with maintainers; [viric];
# XXX: don't build before libmusclecard is fixed # XXX: don't build before libmusclecard is fixed
# platforms = with stdenv.lib.platforms; linux; # platforms = with stdenv.lib.platforms; linux;
}; };

View file

@ -9,11 +9,11 @@ stdenv.mkDerivation {
buildInputs = [ libmusclecard pcsclite pkgconfig ]; buildInputs = [ libmusclecard pcsclite pkgconfig ];
meta = { meta = with stdenv.lib; {
description = "Smart card applications for use with MUSCLE plugins"; description = "Smart card applications for use with MUSCLE plugins";
homepage = http://muscleapps.alioth.debian.org/; homepage = http://muscleapps.alioth.debian.org/;
license = "BSD"; # http://anonscm.debian.org/viewvc/muscleapps/trunk/muscleTool/COPYING?view=markup license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = with maintainers; [viric];
# XXX: don't build before libmusclecard is fixed # XXX: don't build before libmusclecard is fixed
# platforms = with stdenv.lib.platforms; linux; # platforms = with stdenv.lib.platforms; linux;
}; };