mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 03:43:53 +03:00
Fixed some licenses
This commit is contained in:
parent
a1144c5b45
commit
62d62b6588
@ -69,11 +69,11 @@ stdenv.mkDerivation {
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -90,12 +90,12 @@ stdenv.mkDerivation {
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -81,12 +81,12 @@ stdenv.mkDerivation {
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -102,12 +102,12 @@ stdenv.mkDerivation {
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -88,12 +88,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -13,10 +13,10 @@ stdenv.mkDerivation {
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, unzip, jdk, lib }:
|
||||
{ stdenv, fetchurl, unzip, jdk }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
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}'
|
||||
'';
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -78,13 +78,13 @@ in
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -90,13 +90,13 @@ in
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -57,12 +57,12 @@ in
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -20,9 +20,9 @@ stdenv.mkDerivation rec {
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -12,9 +12,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
@ -9,9 +9,9 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ lzo ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.lzop.org;
|
||||
description = "Fast file compressor";
|
||||
license = "GPL";
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
@ -30,9 +30,9 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
};
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://optipng.sourceforge.net/;
|
||||
description = "A PNG optimizer";
|
||||
license = "bsd";
|
||||
license = licenses.zlib;
|
||||
};
|
||||
}
|
||||
|
@ -40,9 +40,9 @@ stdenv.mkDerivation {
|
||||
--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;
|
||||
};
|
||||
}
|
||||
|
@ -20,11 +20,11 @@ stdenv.mkDerivation {
|
||||
|
||||
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;
|
||||
};
|
||||
|
@ -9,11 +9,11 @@ stdenv.mkDerivation {
|
||||
|
||||
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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user