Fixed some licenses

Changed files
+60 -60
pkgs
development
servers
felix
http
jboss
memcached
monitoring
sql
postgresql
jdbc
psqlodbc
tools
compression
graphics
optipng
pdfread
security
muscleframework
muscletool
+4 -4
pkgs/development/compilers/go/1.1-darwin.nix
···
cp ./misc/emacs/* $out/share/emacs/site-lisp/
'';
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://golang.org/;
description = "The Go Programming language";
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [ zef ];
-
platforms = stdenv.lib.platforms.darwin;
+
license = licenses.bsd3;
+
maintainers = with maintainers; [ zef ];
+
platforms = platforms.darwin;
};
}
+4 -4
pkgs/development/compilers/go/1.1.nix
···
cp ./misc/emacs/* $out/share/emacs/site-lisp/
'';
-
meta = {
+
meta = with stdenv.lib; {
branch = "1.1";
homepage = http://golang.org/;
description = "The Go Programming language";
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [ pierron viric ];
-
platforms = stdenv.lib.platforms.linux;
+
license = licenses.bsd3;
+
maintainers = with maintainers; [ pierron viric ];
+
platforms = platforms.linux;
};
}
+4 -4
pkgs/development/compilers/go/1.2.nix
···
cp ./misc/emacs/* $out/share/emacs/site-lisp/
'';
-
meta = {
+
meta = with stdenv.lib; {
branch = "1.2";
homepage = http://golang.org/;
description = "The Go Programming language";
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [ pierron viric ];
-
platforms = stdenv.lib.platforms.linux;
+
license = licenses.bsd3;
+
maintainers = with maintainers; [ pierron viric ];
+
platforms = platforms.linux;
};
}
+4 -4
pkgs/development/compilers/go/1.3.nix
···
setupHook = ./setup-hook.sh;
-
meta = {
+
meta = with stdenv.lib; {
branch = "1.3";
homepage = http://golang.org/;
description = "The Go Programming language";
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [ cstrahan ];
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.bsd3;
+
maintainers = with maintainers; [ cstrahan ];
+
platforms = platforms.linux ++ platforms.darwin;
};
}
+4 -4
pkgs/development/compilers/go/1.4.nix
···
setupHook = ./setup-hook.sh;
-
meta = {
+
meta = with stdenv.lib; {
branch = "1.4";
homepage = http://golang.org/;
description = "The Go Programming language";
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [ cstrahan wkennington ];
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.bsd3;
+
maintainers = with maintainers; [ cstrahan wkennington ];
+
platforms = platforms.linux ++ platforms.darwin;
};
}
+3 -3
pkgs/servers/felix/default.nix
···
mkdir -p $out
cp -av * $out
'';
-
meta = {
+
meta = with stdenv.lib; {
description = "An OSGi gateway";
homepage = http://felix.apache.org;
-
license = "ASF";
-
maintainers = [ stdenv.lib.maintainers.sander ];
+
license = licenses.asl20;
+
maintainers = [ maintainers.sander ];
};
}
+5 -5
pkgs/servers/http/jboss/default.nix
···
-
{ stdenv, fetchurl, unzip, jdk, lib }:
+
{ stdenv, fetchurl, unzip, jdk }:
stdenv.mkDerivation {
name = "jboss-as-7.1.1.Final";
···
find $out/bin -name \*.sh -print0 | xargs -0 sed -i -e '/#!\/bin\/sh/aJAVA_HOME=${jdk}'
'';
-
meta = {
-
homepage = "http://www.jboss.org/";
+
meta = with stdenv.lib; {
+
homepage = http://www.jboss.org/;
description = "Open Source J2EE application server";
-
license = "GPL/LGPL";
-
maintainers = [ lib.maintainers.sander ];
+
license = licenses.lgpl21;
+
maintainers = [ maintainers.sander ];
};
}
+4 -4
pkgs/servers/memcached/default.nix
···
buildInputs = [cyrus_sasl libevent];
-
meta = {
+
meta = with stdenv.lib; {
description = "A distributed memory object caching system";
repositories.git = https://github.com/memcached/memcached.git;
homepage = http://memcached.org/;
-
license = "bsd";
-
maintainers = [ stdenv.lib.maintainers.coconnor ];
-
platforms = stdenv.lib.platforms.linux;
+
license = licenses.bsd3;
+
maintainers = [ maintainers.coconnor ];
+
platforms = platforms.linux;
};
}
+4 -4
pkgs/servers/monitoring/zabbix/2.0.nix
···
configureFlags = "--enable-agent";
-
meta = {
+
meta = with stdenv.lib; {
inherit branch;
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/;
-
license = "GPL";
-
maintainers = [ stdenv.lib.maintainers.eelco ];
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.gpl2;
+
maintainers = [ maintainers.eelco ];
+
platforms = platforms.linux ++ platforms.darwin;
};
};
+4 -4
pkgs/servers/monitoring/zabbix/2.2.nix
···
configureFlags = "--enable-agent";
-
meta = {
+
meta = with stdenv.lib; {
inherit branch;
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/;
-
license = "GPL";
-
maintainers = [ stdenv.lib.maintainers.eelco ];
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.gpl2;
+
maintainers = [ maintainers.eelco ];
+
platforms = platforms.linux ++ platforms.darwin;
};
};
+4 -4
pkgs/servers/monitoring/zabbix/default.nix
···
configureFlags = "--enable-agent";
-
meta = {
+
meta = with stdenv.lib; {
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/;
-
license = "GPL";
-
maintainers = [ stdenv.lib.maintainers.eelco ];
-
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+
license = licenses.gpl2;
+
maintainers = [ maintainers.eelco ];
+
platforms = platforms.linux ++ platforms.darwin;
};
};
+2 -2
pkgs/servers/sql/postgresql/jdbc/default.nix
···
cp jars/*.jar $out/share/java
'';
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://jdbc.postgresql.org/;
description = "JDBC driver for PostgreSQL allowing Java programs to connect to a PostgreSQL database";
-
license = "bsd";
+
license = licenses.bsd3;
};
}
+2 -2
pkgs/servers/sql/postgresql/psqlodbc/default.nix
···
configureFlags = "--with-iodbc=${libiodbc}";
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://psqlodbc.projects.postgresql.org/;
description = "ODBC driver for PostgreSQL";
-
license = "LGPL";
+
license = licenses.lgpl2;
};
}
+2 -2
pkgs/tools/compression/lzop/default.nix
···
buildInputs = [ lzo ];
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://www.lzop.org;
description = "Fast file compressor";
-
license = "GPL";
+
license = licenses.gpl2;
};
}
+2 -2
pkgs/tools/graphics/optipng/default.nix
···
'';
};
-
meta = {
+
meta = with stdenv.lib; {
homepage = http://optipng.sourceforge.net/;
description = "A PNG optimizer";
-
license = "bsd";
+
license = licenses.zlib;
};
}
+2 -2
pkgs/tools/graphics/pdfread/default.nix
···
--prefix PATH : ${ghostscript}/bin:${pngnq}/bin:${djvulibre}/bin:${unrar}/bin:${optipng}/bin
'';
-
meta = {
+
meta = with stdenv.lib; {
description = "PDF/DJVU to ebook format converter";
homepage = http://www.mobileread.com/forums/showthread.php?t=21906;
-
license = "bsd";
+
license = licenses.mit;
};
}
+3 -3
pkgs/tools/security/muscleframework/default.nix
···
buildInputs = [ libmusclecard pkgconfig pcsclite];
-
meta = {
+
meta = with stdenv.lib; {
description = "MUSCLE smart card framework - mcard plugin";
homepage = http://muscleplugins.alioth.debian.org/;
-
license = "BSD";
-
maintainers = with stdenv.lib.maintainers; [viric];
+
license = licenses.bsd3;
+
maintainers = with maintainers; [viric];
# XXX: don't build before libmusclecard is fixed
# platforms = with stdenv.lib.platforms; linux;
};
+3 -3
pkgs/tools/security/muscletool/default.nix
···
buildInputs = [ libmusclecard pcsclite pkgconfig ];
-
meta = {
+
meta = with stdenv.lib; {
description = "Smart card applications for use with MUSCLE plugins";
homepage = http://muscleapps.alioth.debian.org/;
-
license = "BSD"; # http://anonscm.debian.org/viewvc/muscleapps/trunk/muscleTool/COPYING?view=markup
-
maintainers = with stdenv.lib.maintainers; [viric];
+
license = licenses.bsd3;
+
maintainers = with maintainers; [viric];
# XXX: don't build before libmusclecard is fixed
# platforms = with stdenv.lib.platforms; linux;
};