Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2018-07-21 19:43:53 +02:00
2090 changed files with 4329 additions and 3730 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip }:
{ stdenv, fetchurl }:
let
version = "2.04";

View File

@@ -2,18 +2,18 @@
stdenv.mkDerivation rec {
name = "google-fonts-${version}";
version = "2017-06-28";
version = "2018-07-13";
src = fetchFromGitHub {
owner = "google";
repo = "fonts";
rev = "b1cb16c0ce2402242e0106d15b0429d1b8075ecc";
sha256 = "18kyclwipkdv4zxfws87x2l91jwn34vrizw8rmv8lqznnfsjh2lg";
rev = "3ca591dae7372a26e254ec6d22e7b453813b9530";
sha256 = "01ak3dzw2kihwa0dy27x8vvpiscd66mnkf61vj1xn29m4g48y0lr";
};
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "0n0j2hi1qb2sc6p3v6lpaqb2aq0m9xjmi7apz3hf2nx97rrsam22";
outputHash = "1pzm26794nwdbsvjnczpfchxiqa1n1zhp517g6g39wfm1nfszz83";
phases = [ "unpackPhase" "patchPhase" "installPhase" ];

View File

@@ -1,7 +1,6 @@
{
stdenv, lib,
fetchFromGitHub, fetchurl,
runCommand, writeText,
nodejs, ttfautohint-nox, otfcc,
# Custom font set options.

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchzip, fetchFromGitHub, optipng, cairo, unzip, pythonPackages, pkgconfig, pngquant, which, imagemagick }:
{ stdenv, fetchzip, fetchFromGitHub, optipng, cairo, pythonPackages, pkgconfig, pngquant, which, imagemagick }:
let
mkNoto = { name, weights, sha256, }:

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchzip }:
let
mkVariant = variant: { displayName, version, abbreviation, sha256, outputHash }: stdenv.mkDerivation {
mkVariant = variant: { version, abbreviation, sha256, outputHash }: stdenv.mkDerivation {
name = "tex-gyre-${variant}-${version}";
inherit version;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, writeText, nss, python
{ stdenv, fetchurl, nss, python
, blacklist ? []
, includeEmail ? false
}:

View File

@@ -1,6 +1,6 @@
{ fetchurl }:
fetchurl {
url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/e6e8a920e43237ccd2f66d6a349b5932a5eba1f5.tar.gz";
sha256 = "0xyw1a5fp6swyxsj79hihivq9fpzzvl4apv34399a1n4ch6qhbf3";
url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/92b4fe519b988dee70e2ef8f2f1d05edf610ba8a.tar.gz";
sha256 = "15sh85v57k635q5ir8pwa605cchj12h4sflss8zd1xshy7ywi673";
}

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchurl }:
let
mkNixBackground = { name, src, description } @ attrs:
mkNixBackground = { name, src, description }:
stdenv.mkDerivation {
inherit name src;

View File

@@ -1,4 +1,4 @@
{stdenv, fetchurl, unzip}:
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "docbook-xml-ebnf-1.2b1";

View File

@@ -12,7 +12,7 @@ let
in
import ./generic.nix {
inherit stdenv fetchurl unzip findXMLCatalogs;
inherit stdenv unzip findXMLCatalogs;
name = "docbook-xml-4.1.2";
src = fetchurl {
url = http://www.docbook.org/xml/4.1.2/docbkx412.zip;

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl, unzip, findXMLCatalogs}:
import ./generic.nix {
inherit stdenv fetchurl unzip findXMLCatalogs;
inherit stdenv unzip findXMLCatalogs;
name = "docbook-xml-4.2";
src = fetchurl {
url = http://www.docbook.org/xml/4.2/docbook-xml-4.2.zip;

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl, unzip, findXMLCatalogs}:
import ./generic.nix {
inherit stdenv fetchurl unzip findXMLCatalogs;
inherit stdenv unzip findXMLCatalogs;
name = "docbook-xml-4.3";
src = fetchurl {
url = http://www.docbook.org/xml/4.3/docbook-xml-4.3.zip;

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl, unzip, findXMLCatalogs}:
import ./generic.nix {
inherit stdenv fetchurl unzip findXMLCatalogs;
inherit stdenv unzip findXMLCatalogs;
name = "docbook-xml-4.4";
src = fetchurl {
url = http://www.docbook.org/xml/4.4/docbook-xml-4.4.zip;

View File

@@ -1,7 +1,7 @@
{stdenv, fetchurl, unzip, findXMLCatalogs}:
import ./generic.nix {
inherit stdenv fetchurl unzip findXMLCatalogs;
inherit stdenv unzip findXMLCatalogs;
name = "docbook-xml-4.5";
src = fetchurl {
url = http://www.docbook.org/xml/4.5/docbook-xml-4.5.zip;

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip, src, name, postInstall ? "true", meta ? {}, findXMLCatalogs }:
{ stdenv, unzip, src, name, postInstall ? "true", meta ? {}, findXMLCatalogs }:
stdenv.mkDerivation {
inherit src name postInstall;