commit
87f97f068e
@ -400,6 +400,10 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
|
|||||||
free = false;
|
free = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jasper = spdx {
|
||||||
|
spdxId = "JasPer-2.0";
|
||||||
|
fullName = "JasPer License";
|
||||||
|
};
|
||||||
|
|
||||||
lgpl2 = spdx {
|
lgpl2 = spdx {
|
||||||
spdxId = "LGPL-2.0";
|
spdxId = "LGPL-2.0";
|
||||||
|
@ -15,7 +15,9 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [libjpeg libXext libX11 xextproto libtiff libungif libpng];
|
buildInputs = [libjpeg libXext libX11 xextproto libtiff libungif libpng];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "An image loading and rendering library for X11";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ gpl2 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "incrtcl-${version}";
|
name = "incrtcl-${version}";
|
||||||
version = "4.0.4";
|
version = "4.0.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itcl4.0.4.tar.gz;
|
url = mirror://sourceforge/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4/itcl4.0.4.tar.gz;
|
||||||
sha256 = "1ppc9b13cvmc6rp77k7dl2zb26xk0z30vxygmr4h1xr2r8w091k3";
|
sha256 = "1ppc9b13cvmc6rp77k7dl2zb26xk0z30vxygmr4h1xr2r8w091k3";
|
||||||
@ -22,9 +22,10 @@ stdenv.mkDerivation rec {
|
|||||||
libPrefix = "itcl3.4";
|
libPrefix = "itcl3.4";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://incrtcl.sourceforge.net/;
|
homepage = http://incrtcl.sourceforge.net/;
|
||||||
description = "Object Oriented Enhancements for Tcl/Tk";
|
description = "Object Oriented Enhancements for Tcl/Tk";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.tcltk;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "jama-${version}";
|
name = "jama-${version}";
|
||||||
version = "1.2.5";
|
version = "1.2.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = https://math.nist.gov/tnt/jama125.zip;
|
url = https://math.nist.gov/tnt/jama125.zip;
|
||||||
sha256 = "031ns526fvi2nv7jzzv02i7i5sjcyr0gj884i3an67qhsx8vyckl";
|
sha256 = "031ns526fvi2nv7jzzv02i7i5sjcyr0gj884i3an67qhsx8vyckl";
|
||||||
@ -21,9 +21,10 @@ stdenv.mkDerivation rec {
|
|||||||
cp *.h $out/include
|
cp *.h $out/include
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://math.nist.gov/tnt/;
|
homepage = https://math.nist.gov/tnt/;
|
||||||
description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates";
|
description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.publicDomain;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
homepage = https://www.ece.uvic.ca/~frodo/jasper/;
|
||||||
description = "JPEG2000 Library";
|
description = "JPEG2000 Library";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.jasper;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -18,8 +18,9 @@ stdenv.mkDerivation {
|
|||||||
-e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile
|
-e "s|install: install-bin install-man install-doc|install: install-bin|" Makefile
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.sander ];
|
maintainers = [ maintainers.sander ];
|
||||||
|
license = licenses.afl21;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,13 +3,14 @@
|
|||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gwt-dnd-2.6.5";
|
name = "gwt-dnd-2.6.5";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar;
|
url = http://gwt-dnd.googlecode.com/files/gwt-dnd-2.6.5.jar;
|
||||||
sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw";
|
sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,13 +3,14 @@
|
|||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gwt-widgets-0.2.0";
|
name = "gwt-widgets-0.2.0";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/gwt-widget/gwt-widgets-0.2.0-bin.tar.gz;
|
url = mirror://sourceforge/gwt-widget/gwt-widgets-0.2.0-bin.tar.gz;
|
||||||
sha256 = "09isj4j6842rj13nv8264irkjjhvmgihmi170ciabc98911bakxb";
|
sha256 = "09isj4j6842rj13nv8264irkjjhvmgihmi170ciabc98911bakxb";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = with licenses; [ afl21 lgpl2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -12,8 +12,9 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ unzip
|
buildInputs = [ unzip
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,9 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
inherit unzip;
|
inherit unzip;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
homepage = http://httpunit.sourceforge.net;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,10 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1igmxzcy0s25zcy9vmcw0kd13lh60r0b4qg8lnp1jic33f427pxf";
|
sha256 = "1igmxzcy0s25zcy9vmcw0kd13lh60r0b4qg8lnp1jic33f427pxf";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Java-based solution for accessing, manipulating, and outputting XML data from Java code";
|
||||||
|
homepage = http://www.jdom.org;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,9 @@ stdenv.mkDerivation {
|
|||||||
PREFIX=''''${out}'';
|
PREFIX=''''${out}'';
|
||||||
buildInputs = [ jdk ];
|
buildInputs = [ jdk ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ stdenv.lib.maintainers.sander ];
|
maintainers = [ maintainers.sander ];
|
||||||
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,9 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1mxaxg65f7v8n60irjwm24v7hcisbl0srmpvcy1l4scs6rjj1awh";
|
sha256 = "1mxaxg65f7v8n60irjwm24v7hcisbl0srmpvcy1l4scs6rjj1awh";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Java full-text search engine";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,9 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "18rnyqfcyh0s3dwkkaszdd50ssyjx5fa1y3ii309ldqg693lfgnz";
|
sha256 = "18rnyqfcyh0s3dwkkaszdd50ssyjx5fa1y3ii309ldqg693lfgnz";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
platforms = stdenv.lib.platforms.unix;
|
description = "Generic unit testing framework and methodology for testing any kind of code";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user