Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2018-12-03 12:18:43 +01:00
388 changed files with 3023 additions and 1285 deletions

View File

@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = {
description = "C++ STD manual pages";
homepage = http://gcc.gnu.org/;
homepage = https://gcc.gnu.org/;
license = "GPL/LGPL";
platforms = stdenv.lib.platforms.unix;
};

View File

@@ -19,7 +19,7 @@ fetchzip rec {
(PostScript Type0, TrueType, OpenType...) fonts covering the ISO
10646/Unicode UCS (Universal Character Set).
'';
homepage = http://www.gnu.org/software/freefont/;
homepage = https://www.gnu.org/software/freefont/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
maintainers = [];

View File

@@ -0,0 +1,45 @@
{ stdenvNoCC, fetchurl }:
let
srcs = {
train-images = fetchurl {
url = "http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz";
sha256 = "029na81z5a1c9l1a8472dgshami6f2iixs3m2ji6ym6cffzwl3s4";
};
train-labels = fetchurl {
url = "http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz";
sha256 = "0p152200wwx0w65sqb65grb3v8ncjp230aykmvbbx2sm19556lim";
};
test-images = fetchurl {
url = "http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz";
sha256 = "1rn4vfigaxn2ms24bf4jwzzflgp3hvz0gksvb8j7j70w19xjqhld";
};
test-labels = fetchurl {
url = "http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz";
sha256 = "1imf0i194ndjxzxdx87zlgn728xx3p1qhq1ssbmnvv005vwn1bpp";
};
};
in
stdenvNoCC.mkDerivation rec {
name = "mnist-${version}";
version = "2018-11-16";
installPhase = ''
mkdir -p $out
ln -s "${srcs.train-images}" "$out/${srcs.train-images.name}"
ln -s "${srcs.train-labels}" "$out/${srcs.train-labels.name}"
ln -s "${srcs.test-images}" "$out/${srcs.test-images.name}"
ln -s "${srcs.test-labels}" "$out/${srcs.test-labels.name}"
'';
phases = [ "installPhase" ];
meta = with stdenvNoCC.lib; {
description = "A large database of handwritten digits";
longDescription = ''
The MNIST database (Modified National Institute of Standards and
Technology database) is a large database of handwritten digits that is
commonly used for training various image processing systems.
'';
homepage = http://yann.lecun.com/exdb/mnist/index.html;
license = licenses.cc-by-sa-30;
platforms = platforms.all;
maintainers = with maintainers; [ cmcdragonkai ];
};
}

View File

@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/miscfiles/;
homepage = https://www.gnu.org/software/miscfiles/;
license = licenses.gpl2Plus;
description = "Collection of files not of crucial importance for sysadmins";
maintainers = with maintainers; [ pSub ];