Merge branch 'master' into staging
This commit is contained in:
@@ -21,5 +21,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Khronos reference front-end for GLSL and ESSL";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -42,7 +42,8 @@ self: super: {
|
||||
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
||||
|
||||
# Use the default version of mysql to build this package (which is actually mariadb).
|
||||
mysql = super.mysql.override { mysql = pkgs.mysql.lib; };
|
||||
# test phase requires networking
|
||||
mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.lib; });
|
||||
|
||||
# Link the proper version.
|
||||
zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };
|
||||
|
||||
@@ -5741,7 +5741,6 @@ dont-distribute-packages:
|
||||
mysql-simple-quasi: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
mysql-simple-typed: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
mysql-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
mysql: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
mystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
myTestlll: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
mywatch: [ i686-linux, x86_64-linux, x86_64-darwin ]
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
{stdenv, fetchFromGitHub, autoconf, automake, libtool, brotliUnstable}:
|
||||
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, brotliUnstable }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libbrotli-20160120";
|
||||
version = "53d53e8";
|
||||
name = "libbrotli-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bagder";
|
||||
repo = "libbrotli";
|
||||
rev = "53d53e8d9c0d37398d37bac2e7a7aa20b0025e9e";
|
||||
sha256 = "10r4nx6n1r54f5cjck5mmmsj7bkasnmmz7m84imhil45q73kzd4m";
|
||||
rev = name;
|
||||
sha256 = "0apd3hpy3vaa7brkv8v0xwz05zbd5xv86rcbkwns4x39klba3m3y";
|
||||
};
|
||||
|
||||
buildInputs = [autoconf automake libtool];
|
||||
nativeBuildInputs = [ autoconf automake libtool ];
|
||||
|
||||
preConfigure = ''
|
||||
cp -r ${brotliUnstable.src}/* brotli/
|
||||
chmod -R +700 brotli
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{stdenv, fetchurl,
|
||||
libtool, libjpeg, openssl, libX11, libXdamage, xproto, damageproto,
|
||||
xextproto, libXext, fixesproto, libXfixes, xineramaproto, libXinerama,
|
||||
libXrandr, randrproto, libXtst, zlib
|
||||
libXrandr, randrproto, libXtst, zlib, libgcrypt
|
||||
}:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
@@ -19,7 +19,7 @@ let
|
||||
buildInputs = [
|
||||
libtool libjpeg openssl libX11 libXdamage xproto damageproto
|
||||
xextproto libXext fixesproto libXfixes xineramaproto libXinerama
|
||||
libXrandr randrproto libXtst zlib
|
||||
libXrandr randrproto libXtst zlib libgcrypt
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
|
||||
@@ -63,7 +63,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "LunarG Vulkan loader";
|
||||
homepage = http://www.lunarg.com;
|
||||
homepage = "http://www.lunarg.com";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -37,6 +37,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "The SPIR-V Tools project provides an API and commands for processing SPIR-V modules.";
|
||||
description = "The SPIR-V Tools project provides an API and commands for processing SPIR-V modules";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user