Merge branch 'master.upstream' into staging.upstream
This commit is contained in:
commit
8f45d18a71
@ -241,6 +241,7 @@
|
||||
renzo = "Renzo Carbonara <renzocarbonara@gmail.com>";
|
||||
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
|
||||
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
|
||||
rnhmjoj = "Michele Guerini Rocco <micheleguerinirocco@me.com>";
|
||||
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
|
||||
robberer = "Longrin Wischnewski <robberer@freakmail.de>";
|
||||
robbinch = "Robbin C. <robbinch33@gmail.com>";
|
||||
|
@ -188,7 +188,7 @@
|
||||
./services/mail/postfix.nix
|
||||
./services/mail/spamassassin.nix
|
||||
./services/misc/apache-kafka.nix
|
||||
#./services/misc/autofs.nix
|
||||
./services/misc/autofs.nix
|
||||
./services/misc/canto-daemon.nix
|
||||
./services/misc/calibre-server.nix
|
||||
./services/misc/cpuminer-cryptonight.nix
|
||||
|
@ -125,6 +125,9 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
# For testing
|
||||
environment.systemPackages = [ pkgs.actkbd ];
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -71,48 +71,17 @@ in
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
environment.etc = singleton
|
||||
{ target = "auto.master";
|
||||
source = pkgs.writeText "auto.master" cfg.autoMaster;
|
||||
};
|
||||
|
||||
boot.kernelModules = [ "autofs4" ];
|
||||
|
||||
jobs.autofs =
|
||||
systemd.services.autofs =
|
||||
{ description = "Filesystem automounter";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
|
||||
startOn = "started network-interfaces";
|
||||
stopOn = "stopping network-interfaces";
|
||||
|
||||
path = [ pkgs.nfs-utils pkgs.sshfsFuse ];
|
||||
|
||||
preStop =
|
||||
''
|
||||
set -e; while :; do pkill -TERM automount; sleep 1; done
|
||||
'';
|
||||
|
||||
# automount doesn't clean up when receiving SIGKILL.
|
||||
# umount -l should unmount the directories recursively when they are no longer used
|
||||
# It does, but traces are left in /etc/mtab. So unmount recursively..
|
||||
postStop =
|
||||
''
|
||||
PATH=${pkgs.gnused}/bin:${pkgs.coreutils}/bin
|
||||
exec &> /tmp/logss
|
||||
# double quote for sed:
|
||||
escapeSpaces(){ sed 's/ /\\\\040/g'; }
|
||||
unescapeSpaces(){ sed 's/\\040/ /g'; }
|
||||
sed -n 's@^\s*\(\([^\\ ]\|\\ \)*\)\s.*@\1@p' ${autoMaster} | sed 's/[\\]//' | while read mountPoint; do
|
||||
sed -n "s@[^ ]\+\s\+\($(echo "$mountPoint"| escapeSpaces)[^ ]*\).*@\1@p" /proc/mounts | sort -r | unescapeSpaces| while read smountP; do
|
||||
${pkgs.utillinux}/bin/umount -l "$smountP" || true
|
||||
done
|
||||
done
|
||||
'';
|
||||
|
||||
script =
|
||||
''
|
||||
${if cfg.debug then "exec &> /var/log/autofs" else ""}
|
||||
exec ${pkgs.autofs5}/sbin/automount ${if cfg.debug then "-d" else ""} -f -t ${builtins.toString cfg.timeout} "${autoMaster}" ${if cfg.debug then "-l7" else ""}
|
||||
'';
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.autofs5}/sbin/automount ${if cfg.debug then "-d" else ""} -f -t ${builtins.toString cfg.timeout} ${autoMaster} ${if cfg.debug then "-l7" else ""}";
|
||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
@ -22,9 +22,9 @@ in
|
||||
};
|
||||
|
||||
haskellPackages = mkOption {
|
||||
default = pkgs.haskellngPackages;
|
||||
defaultText = "pkgs.haskellngPackages";
|
||||
example = literalExample "pkgs.haskell-ng.packages.ghc784";
|
||||
default = pkgs.haskellPackages;
|
||||
defaultText = "pkgs.haskellPackages";
|
||||
example = literalExample "pkgs.haskell.packages.ghc784";
|
||||
description = ''
|
||||
haskellPackages used to build IHaskell and other packages.
|
||||
This can be used to change the GHC version used to build
|
||||
|
@ -20,7 +20,9 @@ in
|
||||
|
||||
enable = mkEnableOption ''
|
||||
GDM as the display manager.
|
||||
<emphasis>GDM is very experimental and may render system unusable.</emphasis>
|
||||
<emphasis>GDM in NixOS is not well-tested with desktops other
|
||||
than GNOME, so use with caution, as it could render the
|
||||
system unusable.</emphasis>
|
||||
'';
|
||||
|
||||
debug = mkEnableOption ''
|
||||
|
@ -20,9 +20,9 @@ in
|
||||
};
|
||||
|
||||
haskellPackages = mkOption {
|
||||
default = pkgs.haskellngPackages;
|
||||
defaultText = "pkgs.haskellngPackages";
|
||||
example = literalExample "pkgs.haskell-ng.packages.ghc784";
|
||||
default = pkgs.haskellPackages;
|
||||
defaultText = "pkgs.haskellPackages";
|
||||
example = literalExample "pkgs.haskell.packages.ghc784";
|
||||
description = ''
|
||||
haskellPackages used to build Xmonad and other packages.
|
||||
This can be used to change the GHC version used to build
|
||||
|
28
pkgs/applications/graphics/imv/default.nix
Normal file
28
pkgs/applications/graphics/imv/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub,
|
||||
SDL2, freeimage
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "imv";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "eXeC64";
|
||||
repo = "imv";
|
||||
rev = "f2ce793d628e88825eff3364b293104cb0bdb582";
|
||||
sha256 = "1xqaqbfjgksbjmy1yy7q4sv5bak7w8va60xa426jzscy9cib2sgh";
|
||||
};
|
||||
|
||||
buildInputs = [ SDL2 freeimage ];
|
||||
|
||||
configurePhase = "substituteInPlace Makefile --replace /usr $out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A command line image viewer for tiling window managers";
|
||||
homepage = https://github.com/eXeC64/imv;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
set -x
|
||||
|
||||
# The trailing slash at the end is necessary!
|
||||
WGET_ARGS='http://download.kde.org/stable/applications/15.08.2/ http://download.kde.org/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz -A *.tar.xz'
|
||||
WGET_ARGS='http://download.kde.org/stable/applications/15.08.3/ http://download.kde.org/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz -A *.tar.xz'
|
||||
|
||||
mkdir tmp; cd tmp
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/kovidgoyal/calibre/releases/download/v${meta.version}/${name}.tar.xz";
|
||||
sha256 = "0h8c8w7f63pl1rarr3v6gi82dcsabb3216g7scmjfj50na5cfmhi";
|
||||
sha256 = "0d1sn2wc6h3c5girllsmnqg3jhmkal693ww3j6cj1mz2rraw45xr";
|
||||
};
|
||||
|
||||
inherit python;
|
||||
@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
version = "2.43.0";
|
||||
version = "2.44.0";
|
||||
description = "Comprehensive e-book software";
|
||||
homepage = http://calibre-ebook.com;
|
||||
license = licenses.gpl3;
|
||||
|
27
pkgs/applications/misc/zscroll/default.nix
Normal file
27
pkgs/applications/misc/zscroll/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, lib, python3, python3Packages, fetchFromGitHub }:
|
||||
|
||||
let version = "1.0"; in
|
||||
|
||||
python3Packages.buildPythonPackage {
|
||||
name = "zscroll-${version}";
|
||||
# don't prefix with python version
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "noctuid";
|
||||
repo = "zscroll";
|
||||
rev = "v${version}";
|
||||
sha256 = "0rf9m1czy19hzpcp8dq9c5zawk0nhwfzzjxlhk9r2n06lhb81ig5";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
propogatedBuildInputs = [ python3 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A text scroller for use with panels and shells";
|
||||
homepage = https://github.com/noctuid/zscroll;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
{ fetchurl, fetchFromGitHub, stdenv, bitlbee, autoconf, automake, libtool, pkgconfig, glib, libgcrypt }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bitlbee-steam-2015-09-10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "011375b2d3c67c15d51ca203de0ecaab3b4b7587";
|
||||
owner = "jgeboski";
|
||||
repo = "bitlbee-steam";
|
||||
sha256 = "1m91x3208z9zxppz998i6060alcalfly9ix9jxismj45xyp6mdx7";
|
||||
};
|
||||
|
||||
buildInputs = [ bitlbee autoconf automake libtool pkgconfig glib libgcrypt ];
|
||||
|
||||
preConfigure = ''
|
||||
export BITLBEE_PLUGINDIR=$out/lib/bitlbee
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Steam protocol plugin for BitlBee";
|
||||
|
||||
homepage = https://github.com/jgeboski/bitlbee-steam;
|
||||
license = licenses.gpl2Plus;
|
||||
};
|
||||
}
|
157
pkgs/applications/networking/remote/citrix-receiver/default.nix
Normal file
157
pkgs/applications/networking/remote/citrix-receiver/default.nix
Normal file
@ -0,0 +1,157 @@
|
||||
{ stdenv
|
||||
, requireFile
|
||||
, makeWrapper
|
||||
, libredirect
|
||||
, busybox
|
||||
, file
|
||||
, makeDesktopItem
|
||||
, tzdata
|
||||
, cacert
|
||||
, glib
|
||||
, gtk
|
||||
, atk
|
||||
, gdk_pixbuf
|
||||
, cairo
|
||||
, pango
|
||||
, gnome3
|
||||
, xlibs
|
||||
, libpng12
|
||||
, freetype
|
||||
, fontconfig
|
||||
, gtk_engines
|
||||
, alsaLib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "citrix-receiver-${version}";
|
||||
version = "13.2.1";
|
||||
homepage = https://www.citrix.com/downloads/citrix-receiver/linux/receiver-for-linux-1321.html;
|
||||
|
||||
prefixWithBitness = if stdenv.is64bit then "linuxx64" else "linuxx86";
|
||||
|
||||
src = requireFile rec {
|
||||
name = "${prefixWithBitness}-${version}.328635.tar.gz";
|
||||
sha256 =
|
||||
if stdenv.is64bit
|
||||
then "3a11d663b1a11cc4ebb3e3595405d520ec279e1330462645c53edd5cc79d9ca0"
|
||||
else "0yjw8q8mh4adns2i04m4p273vb4ifakixal7yi3hnbg43b36wfaw";
|
||||
message = ''
|
||||
In order to use Citrix Receiver, you need to comply with the Citrix EULA and download
|
||||
the ${if stdenv.is64bit then "64-bit" else "32-bit"} binaries, .tar.gz from:
|
||||
|
||||
${homepage}#ctx-dl-eula
|
||||
|
||||
Once you have downloaded the file, please use the following command and re-run the
|
||||
installation:
|
||||
|
||||
nix-prefetch-url file://${name}
|
||||
'';
|
||||
};
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
buildInputs = [
|
||||
makeWrapper
|
||||
busybox
|
||||
file
|
||||
gtk
|
||||
gdk_pixbuf
|
||||
];
|
||||
|
||||
libPath = stdenv.lib.makeLibraryPath [
|
||||
glib
|
||||
gtk
|
||||
atk
|
||||
gdk_pixbuf
|
||||
cairo
|
||||
pango
|
||||
gnome3.dconf
|
||||
xlibs.libX11
|
||||
xlibs.libXext
|
||||
xlibs.libXrender
|
||||
xlibs.libXinerama
|
||||
xlibs.libXfixes
|
||||
libpng12
|
||||
gtk_engines
|
||||
freetype
|
||||
fontconfig
|
||||
alsaLib
|
||||
stdenv.cc.cc # Fixes: Can not load [..]/opt/citrix-icaclient/lib/ctxh264_fb.so:(null)
|
||||
];
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "wfica";
|
||||
desktopName = "Citrix Receiver";
|
||||
genericName = "Citrix Receiver";
|
||||
exec = "wfica";
|
||||
icon = "wfica";
|
||||
comment = "Connect to remote Citrix server";
|
||||
categories = "GTK;GNOME;X-GNOME-NetworkSettings;Network;";
|
||||
mimeType = "application/x-ica";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
export ICAInstDir="$out/opt/citrix-icaclient"
|
||||
|
||||
sed -i \
|
||||
-e 's,^main_install_menu$,install_ICA_client,g' \
|
||||
-e 's,^integrate_ICA_client(),alias integrate_ICA_client=true\nintegrate_ICA_client_old(),g' \
|
||||
-e 's,^ANSWER=""$,ANSWER="$INSTALLER_YES",' \
|
||||
-e 's,/bin/true,true,g' \
|
||||
./${prefixWithBitness}/hinst
|
||||
|
||||
# Run the installer...
|
||||
./${prefixWithBitness}/hinst CDROM "`pwd`"
|
||||
|
||||
echo "Deleting broken links..."
|
||||
for link in `find $ICAInstDir -type l `
|
||||
do
|
||||
[ -f "$link" ] || rm -v "$link"
|
||||
done
|
||||
|
||||
echo "Expanding certificates..."
|
||||
# As explained in https://wiki.archlinux.org/index.php/Citrix#Security_Certificates
|
||||
pushd "$ICAInstDir/keystore/cacerts"
|
||||
awk 'BEGIN {c=0;} /BEGIN CERT/{c++} { print > "cert." c ".pem"}' < ${cacert}/etc/ssl/certs/ca-bundle.crt
|
||||
popd
|
||||
|
||||
echo "Patching executables..."
|
||||
find $ICAInstDir -type f -exec file {} \; |
|
||||
grep 'ELF.*executable' |
|
||||
cut -f 1 -d : |
|
||||
xargs -t -n 1 patchelf \
|
||||
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
||||
--set-rpath "$ICAInstDir:$libPath"
|
||||
|
||||
echo "Wrapping wfica..."
|
||||
mkdir "$out/bin"
|
||||
|
||||
makeWrapper "$ICAInstDir/wfica -icaroot $ICAInstDir" "$out/bin/wfica" \
|
||||
--set ICAROOT "$ICAInstDir" \
|
||||
--set GTK_PATH "${gtk}/lib/gtk-2.0:${gnome3.gnome_themes_standard}/lib/gtk-2.0" \
|
||||
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
||||
--set LD_PRELOAD "${libredirect}/lib/libredirect.so" \
|
||||
--set LD_LIBRARY_PATH "$libPath" \
|
||||
--set NIX_REDIRECTS "/usr/share/zoneinfo=${tzdata}/share/zoneinfo:/etc/zoneinfo=${tzdata}/share/zoneinfo:/etc/timezone=$ICAInstDir/timezone"
|
||||
|
||||
echo "We arbitrarily set the timezone to UTC. No known consequences at this point."
|
||||
echo UTC > "$ICAInstDir/timezone"
|
||||
|
||||
echo "Installing desktop item..."
|
||||
mkdir -p $out/share/applications
|
||||
cp ${desktopItem}/share/applications/* $out/share/applications
|
||||
|
||||
# We introduce a dependency on the source file so that it need not be redownloaded everytime
|
||||
echo $src >> "$out/share/nix_dependencies.pin"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
homepage = homepage;
|
||||
description = "Citrix Receiver";
|
||||
maintainers = with maintainers; [ obadz a1russell ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }:
|
||||
|
||||
let version = "3.5.2"; in
|
||||
let version = "3.5.4"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "clipgrab-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "0prag5liwx2l1b2a5f7cp3jh50qw5iwkf2c07iws9m1j1np3lxgp";
|
||||
sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r";
|
||||
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
|
||||
url = "http://download.clipgrab.de/${name}.tar.gz";
|
||||
};
|
||||
|
37
pkgs/applications/video/mkcast/default.nix
Normal file
37
pkgs/applications/video/mkcast/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchFromGitHub, wmctrl, pythonPackages, byzanz
|
||||
, xdpyinfo, makeWrapper, gtk, xorg, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mkcast-2015-03-13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KeyboardFire";
|
||||
repo = "mkcast";
|
||||
rev = "cac22cb6c6f8ec2006339698af5e9199331759e0";
|
||||
sha256 = "15wp3n3z8gw7kjdxs4ahda17n844awhxsqbql5ipsdhqfxah2d8p";
|
||||
};
|
||||
|
||||
buildInputs = with pythonPackages; [ makeWrapper pygtk gtk xlib ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
postInstall = ''
|
||||
for f in $out/bin/*; do #*/
|
||||
wrapProgram $f --prefix PATH : "${xdpyinfo}/bin:${wmctrl}/bin/:${byzanz}/bin/:${gnome3.gnome_terminal}/bin/:$out/bin"
|
||||
done
|
||||
|
||||
rm -r screenkey/.bzr
|
||||
cp -R screenkey $out/bin
|
||||
|
||||
wrapProgram $out/bin/screenkey/screenkey \
|
||||
--prefix PATH : "${xorg.xmodmap}/bin"\
|
||||
--prefix PYTHONPATH : "$PYTHONPATH"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A tool for creating GIF screencasts of a terminal, with key presses overlaid";
|
||||
homepage = https://github.com/KeyboardFire/mkcast;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ iElectric pSub ];
|
||||
};
|
||||
}
|
@ -1,17 +1,17 @@
|
||||
{stdenv, fetchurl, libX11, libXinerama, patches ? []}:
|
||||
{stdenv, fetchurl, libX11, libXinerama, libXft, patches ? []}:
|
||||
|
||||
let
|
||||
name = "dwm-6.0";
|
||||
name = "dwm-6.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dl.suckless.org/dwm/${name}.tar.gz";
|
||||
sha256 = "0mpbivy9j80l1jqq4bd4g4z8s5c54fxrjj44avmfwncjwqylifdj";
|
||||
sha256 = "1zkmwb6df6m254shx06ly90c0q4jl70skk1pvkixpb7hcxhwbxn2";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXinerama ];
|
||||
buildInputs = [ libX11 libXinerama libXft ];
|
||||
|
||||
prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';
|
||||
|
||||
|
@ -97,6 +97,13 @@ FILE * fopen(const char * path, const char * mode)
|
||||
return fopen_real(rewrite(path, buf), mode);
|
||||
}
|
||||
|
||||
FILE * fopen64(const char * path, const char * mode)
|
||||
{
|
||||
FILE * (*fopen64_real) (const char *, const char *) = dlsym(RTLD_NEXT, "fopen64");
|
||||
char buf[PATH_MAX];
|
||||
return fopen64_real(rewrite(path, buf), mode);
|
||||
}
|
||||
|
||||
int __xstat(int ver, const char * path, struct stat * st)
|
||||
{
|
||||
int (*__xstat_real) (int ver, const char *, struct stat *) = dlsym(RTLD_NEXT, "__xstat");
|
||||
|
@ -4,7 +4,7 @@
|
||||
set -x
|
||||
|
||||
# The trailing slash at the end is necessary!
|
||||
RELEASE_URL="http://download.kde.org/stable/plasma/5.4.2/"
|
||||
RELEASE_URL="http://download.kde.org/stable/plasma/5.4.3/"
|
||||
EXTRA_WGET_ARGS='-A *.tar.xz'
|
||||
|
||||
mkdir tmp; cd tmp
|
||||
|
@ -3,299 +3,299 @@
|
||||
|
||||
{
|
||||
bluedevil = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/bluedevil-5.4.2.tar.xz";
|
||||
sha256 = "1axx5bf7sdi81jccfa8r5pqz2figr0zkww4inpr9zsgs9xpv9dd0";
|
||||
name = "bluedevil-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/bluedevil-5.4.3.tar.xz";
|
||||
sha256 = "04zl8sl59imxfmph8igy2xw5qbdqhqbf1f3s92zhrcqghnawyr3k";
|
||||
name = "bluedevil-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
breeze = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/breeze-5.4.2.tar.xz";
|
||||
sha256 = "17l55qv1lc2xas7qj4m9kgvwvy506awwji0ngsn0cc0kgy362a4x";
|
||||
name = "breeze-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/breeze-5.4.3.tar.xz";
|
||||
sha256 = "1ylkrza65m4irvyfl3nzfsfaf3j0z3q5j5qv7lk16g4crknxb2gw";
|
||||
name = "breeze-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kde-cli-tools = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kde-cli-tools-5.4.2.tar.xz";
|
||||
sha256 = "0hcc1cjshwvqxqpac7ybc58s96ar9h6d9ga4vrxrly0ci6wp8r32";
|
||||
name = "kde-cli-tools-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kde-cli-tools-5.4.3.tar.xz";
|
||||
sha256 = "16d7fkxvbr60h96g7faq6c7gzssb43ynac7yhpfp4i2gwx1w9q8r";
|
||||
name = "kde-cli-tools-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kdecoration = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kdecoration-5.4.2.tar.xz";
|
||||
sha256 = "0l500c0xzlszgn70fxa3qix40v18dcqw3989xjviqxq9wzjaww3x";
|
||||
name = "kdecoration-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kdecoration-5.4.3.tar.xz";
|
||||
sha256 = "1m92spmq0gadcwgwhnf163kh3kzccgw2b62px1v5krk8hlw6q19q";
|
||||
name = "kdecoration-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kde-gtk-config = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kde-gtk-config-5.4.2.tar.xz";
|
||||
sha256 = "0h23nnyhgvrvhs30g0cysf0z7mfgcz1d1gqzbmhzqa5an2k7h70x";
|
||||
name = "kde-gtk-config-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kde-gtk-config-5.4.3.tar.xz";
|
||||
sha256 = "0apfvcmwzp5g02kx0dvkywrfb7v9gbmlnmyga2jra027zf61jf98";
|
||||
name = "kde-gtk-config-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kdeplasma-addons = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kdeplasma-addons-5.4.2.tar.xz";
|
||||
sha256 = "0i634ch5xy3b12lr850v8q0ip6648i6jz6zskrr55pndgfazrkfk";
|
||||
name = "kdeplasma-addons-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kdeplasma-addons-5.4.3.tar.xz";
|
||||
sha256 = "0wyqwrlhm9k2wscbw372mk2v7207jappq59jhzxx223glvz2qrxp";
|
||||
name = "kdeplasma-addons-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kgamma5 = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kgamma5-5.4.2.tar.xz";
|
||||
sha256 = "02z6llrxrh8z92z4xq1p94sxg0slmy24x7c6m9g110grgq724x3y";
|
||||
name = "kgamma5-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kgamma5-5.4.3.tar.xz";
|
||||
sha256 = "0l6bk008w8m3wiqvk4pdw9s7iln9fbkbi5xl3b8rf846knr478gr";
|
||||
name = "kgamma5-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
khelpcenter = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/khelpcenter-5.4.2.tar.xz";
|
||||
sha256 = "0v25297ahnxa443jf182pfyp0wcjybdn820sagrs3w8238i3y5v6";
|
||||
name = "khelpcenter-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/khelpcenter-5.4.3.tar.xz";
|
||||
sha256 = "0kf68maqcm2ym62d6r7v6sw9v91qxzdg53l0hk9h6p7sycs0jqq2";
|
||||
name = "khelpcenter-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
khotkeys = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/khotkeys-5.4.2.tar.xz";
|
||||
sha256 = "1hs4r94fz3zj2p76f46cyi8bqwznpcz0k7cjhbrkr8a94ld31v33";
|
||||
name = "khotkeys-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/khotkeys-5.4.3.tar.xz";
|
||||
sha256 = "094nsrmnja83rim1cxa5p4rfxx4bdwwsv6b04rvg0l55jvw9wp29";
|
||||
name = "khotkeys-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kinfocenter = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kinfocenter-5.4.2.tar.xz";
|
||||
sha256 = "1p9bvsshz1z1w016inxk8f0da7p336192gjv5lw4x9kksh6bazhq";
|
||||
name = "kinfocenter-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kinfocenter-5.4.3.tar.xz";
|
||||
sha256 = "1v6y1div8fhyn93ypnz3a7q6d1mzyabav2bq4rn5rg5hldizjns7";
|
||||
name = "kinfocenter-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kmenuedit = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kmenuedit-5.4.2.tar.xz";
|
||||
sha256 = "0jv2yf2i17h1q2dhd88wj1ywr7hfnzpfpjhmab15wq1aan7rw9v5";
|
||||
name = "kmenuedit-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kmenuedit-5.4.3.tar.xz";
|
||||
sha256 = "0zpwvg0xw04jg5kxv9kdmlf6pg1yp6ibzafl8q3ah8ca5n92gb9n";
|
||||
name = "kmenuedit-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kscreen = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kscreen-5.4.2.tar.xz";
|
||||
sha256 = "0liiiaqpnbi49viqxf0ds5j187f3r11aw1kf4y961y9nkzqidwlp";
|
||||
name = "kscreen-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kscreen-5.4.3.tar.xz";
|
||||
sha256 = "01ba4qqf5vlmsgpf3raq7dgwxvdcm4inc7v03b3z4l7980wa6nxr";
|
||||
name = "kscreen-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
ksshaskpass = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/ksshaskpass-5.4.2.tar.xz";
|
||||
sha256 = "13ma9dx5l7bzv9yq6bcq7x17pizrgyc6sh1bki56dj8g3xfsvmrb";
|
||||
name = "ksshaskpass-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/ksshaskpass-5.4.3.tar.xz";
|
||||
sha256 = "18r7a49i0rlijjz02h2k2wri3bkhjvzl5as0nv55gkg8b1g05dky";
|
||||
name = "ksshaskpass-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
ksysguard = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/ksysguard-5.4.2.tar.xz";
|
||||
sha256 = "1cy7z5723w0757184lq8bjv7i5l54ykmq12r6ydlh104fmpzq3fm";
|
||||
name = "ksysguard-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/ksysguard-5.4.3.tar.xz";
|
||||
sha256 = "1lgbvabxfzyl9x1nsmr6nifh24jxnvlknigfrzfcnryibbvk6mlk";
|
||||
name = "ksysguard-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kwallet-pam = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kwallet-pam-5.4.2.tar.xz";
|
||||
sha256 = "0sc9ld5n2j1icfzjni9xcn9v8ix8iszkg3qf1mp6lqw4rnx3z00l";
|
||||
name = "kwallet-pam-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kwallet-pam-5.4.3.tar.xz";
|
||||
sha256 = "0m5yz8c6alaw0rkc0dd9cp7jijqmpdmqg4qbc3i3pp5rz3hiyp51";
|
||||
name = "kwallet-pam-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kwayland = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kwayland-5.4.2.tar.xz";
|
||||
sha256 = "1h8jy7zdx0hxfjzxgw0ahfr80375wjlqiyiglx2zc8r9q34axswp";
|
||||
name = "kwayland-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kwayland-5.4.3.tar.xz";
|
||||
sha256 = "026jgwyvkfb3zdrama2fi046zxg7v3khvb6sxl1krj4idiiyz1c0";
|
||||
name = "kwayland-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kwayland-integration = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kwayland-integration-5.4.2.tar.xz";
|
||||
sha256 = "088hvd665rnf0xlav202jjyqmnipfgan6pbi1mkfpdawwm47vif9";
|
||||
name = "kwayland-integration-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kwayland-integration-5.4.3.tar.xz";
|
||||
sha256 = "10acnrv7m12gwd0mccp9j9a47sjl29xrrfwlpqiqh9hcw4vn7mqp";
|
||||
name = "kwayland-integration-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kwin = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kwin-5.4.2.tar.xz";
|
||||
sha256 = "14a11l63mz0n2sgnjpbphbaqszafsk37ydm0dz36184m194jcj90";
|
||||
name = "kwin-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kwin-5.4.3.tar.xz";
|
||||
sha256 = "0rn359b31hpwqarsw3018r1j7vaavwwxpnnhy29ixsdybmrl4j5b";
|
||||
name = "kwin-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
kwrited = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/kwrited-5.4.2.tar.xz";
|
||||
sha256 = "0hl8v28wh223w2disbc9qhfpqb85wq2mzv49yi6fimlwkx1318s7";
|
||||
name = "kwrited-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/kwrited-5.4.3.tar.xz";
|
||||
sha256 = "0irnhvsz6zssq3yb7lf0qy0qimydg78y1ghakpmry8632xgmr0yk";
|
||||
name = "kwrited-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
libkscreen = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/libkscreen-5.4.2.tar.xz";
|
||||
sha256 = "0p2z22j7xflzk4v6ilyz3970pn6p9q4bcwjkakv29b2arpli28ys";
|
||||
name = "libkscreen-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/libkscreen-5.4.3.tar.xz";
|
||||
sha256 = "0xa9g6kvvxn2q3fv0217dk3j4dgbd0mhy8hgrvblpp0fw721faqx";
|
||||
name = "libkscreen-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
libksysguard = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/libksysguard-5.4.2.tar.xz";
|
||||
sha256 = "02m99j8ziskrdf1l323wzkn99bi6vg5yz9bpgcih9jz7d70pc8vi";
|
||||
name = "libksysguard-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/libksysguard-5.4.3.tar.xz";
|
||||
sha256 = "18fndkj2bzbwrbixrsq27x4ar379vlsplr3nw766maw31nv5in6i";
|
||||
name = "libksysguard-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
milou = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/milou-5.4.2.tar.xz";
|
||||
sha256 = "05jk76pbgfvgj1jdq6afg0a6b1axp1h3minrxkgly0qc42rwlc9z";
|
||||
name = "milou-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/milou-5.4.3.tar.xz";
|
||||
sha256 = "0xy6h1h1ws47rqx5hcn3916xwf49nywwmq32161jap233347yj71";
|
||||
name = "milou-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
muon = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/muon-5.4.2.tar.xz";
|
||||
sha256 = "0cnkp9bifiga0h2z01fkiivf137b2sq8wjfv8jh00avfqhr9p6z4";
|
||||
name = "muon-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/muon-5.4.3.tar.xz";
|
||||
sha256 = "011l36ayl0xhap5d7cmkbf4vki8516r594dhxdpfm0ma0rnz4xrl";
|
||||
name = "muon-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
oxygen = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/oxygen-5.4.2.tar.xz";
|
||||
sha256 = "0fi2wh6vngsh66j7sk43bvrci06ddj88f1plsh9by96617s1sr36";
|
||||
name = "oxygen-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/oxygen-5.4.3.tar.xz";
|
||||
sha256 = "1av665s2gq84y925qqfhc5bi7wm17vm7p4n10kigsnn5ywylh405";
|
||||
name = "oxygen-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
oxygen-fonts = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/oxygen-fonts-5.4.2.tar.xz";
|
||||
sha256 = "1dvxlgsznxfa1wk4qcanfi9s58c85i1ja651lh1pjp423d1j1kkl";
|
||||
name = "oxygen-fonts-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz";
|
||||
sha256 = "13430yajk1i2l9lz95ry9xc1fvzpvfvdp6m9jikb2g55x606abx0";
|
||||
name = "oxygen-fonts-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-desktop = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-desktop-5.4.2.tar.xz";
|
||||
sha256 = "19ys6ymk82ash13cyq89y8yqx5lylvw9l84d3qpj4z0pmjmzp0qg";
|
||||
name = "plasma-desktop-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-desktop-5.4.3.tar.xz";
|
||||
sha256 = "0hy08ip6cvcz2s3w1wkqjxdydmmfj5mcqv85qbawsrkix0d79694";
|
||||
name = "plasma-desktop-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-mediacenter = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-mediacenter-5.4.2.tar.xz";
|
||||
sha256 = "0ni3a0f9f7df9nhqz035j5vj3bzhsq9zxb19p281pww4slh7y0if";
|
||||
name = "plasma-mediacenter-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-mediacenter-5.4.3.tar.xz";
|
||||
sha256 = "0k85h93yxqf9ccw620r8wk38gzd8nmpmaxsvwx2rssgnn35f04va";
|
||||
name = "plasma-mediacenter-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-nm = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-nm-5.4.2.tar.xz";
|
||||
sha256 = "1lny7sjxr7mi77gb3dy6afmbvfdgfq4rlffaxzffx5bq62gaws68";
|
||||
name = "plasma-nm-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-nm-5.4.3.tar.xz";
|
||||
sha256 = "1wlhzhn7sz26b0ibvwrxbp4pwajvnpj6m37md9bdls3872yhql5r";
|
||||
name = "plasma-nm-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-pa = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-pa-5.4.2.tar.xz";
|
||||
sha256 = "09irn20ikgi58hq5bwg6kmaqqy7h9hkbkadnyv478qxff81wis4i";
|
||||
name = "plasma-pa-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-pa-5.4.3.tar.xz";
|
||||
sha256 = "16ydbvvpwrnh0ik005gdpvmbn38a1k0bn8zvas1gwjz86rkayxr6";
|
||||
name = "plasma-pa-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-sdk = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-sdk-5.4.2.tar.xz";
|
||||
sha256 = "1q4kjml04mdkzcdqi8mbr3c7037339v0knzc38km8szpf995w750";
|
||||
name = "plasma-sdk-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-sdk-5.4.3.tar.xz";
|
||||
sha256 = "08d31g0364ifc5yix0617zhjyv1skrc9m6x38mx0jjk1z2ng9db8";
|
||||
name = "plasma-sdk-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-workspace = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-workspace-5.4.2.tar.xz";
|
||||
sha256 = "0byj4fljiyag781jz3zs5chz48h22gqqc4hb8ha9nfsk615v1irn";
|
||||
name = "plasma-workspace-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-5.4.3.tar.xz";
|
||||
sha256 = "030xqy1s8j3h03arjc39xhw2xs9h2c328id6qgaqxk8v9qimkr5z";
|
||||
name = "plasma-workspace-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
plasma-workspace-wallpapers = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/plasma-workspace-wallpapers-5.4.2.tar.xz";
|
||||
sha256 = "18ggsdjmdcgbpamjynv068rzx5cqpm00b3a2a1ygkc04d5y430js";
|
||||
name = "plasma-workspace-wallpapers-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/plasma-workspace-wallpapers-5.4.3.tar.xz";
|
||||
sha256 = "12yb9d2b7ynfkmmcc4ciz8cnx482vn9545qrijaa403ba0jfbrhx";
|
||||
name = "plasma-workspace-wallpapers-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
polkit-kde-agent = {
|
||||
version = "1-5.4.2";
|
||||
version = "1-5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/polkit-kde-agent-1-5.4.2.tar.xz";
|
||||
sha256 = "0s0z0xkfps0vk6rr013n2vww7s1a77z5jzqk500xl692g8dc2cdh";
|
||||
name = "polkit-kde-agent-1-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/polkit-kde-agent-1-5.4.3.tar.xz";
|
||||
sha256 = "1309wmdrxfqlv621kagwycn2s41n9zsyb56ysqmyilhnb7wq59yn";
|
||||
name = "polkit-kde-agent-1-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
powerdevil = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/powerdevil-5.4.2.tar.xz";
|
||||
sha256 = "01qsm0byvjy6slbhz6k6bikbzn35jhchcaxcis1x3c1gczhvzajw";
|
||||
name = "powerdevil-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/powerdevil-5.4.3.tar.xz";
|
||||
sha256 = "1j20xgca41hqacgsridsigw7s275ad3j0khb59875722qz1y91a0";
|
||||
name = "powerdevil-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
sddm-kcm = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/sddm-kcm-5.4.2.tar.xz";
|
||||
sha256 = "0x662plyyf3krfpp4ifsd9ddwwvrfds63v6cclzir5cs9db0rs0j";
|
||||
name = "sddm-kcm-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/sddm-kcm-5.4.3.tar.xz";
|
||||
sha256 = "1ppryl541pjwxi73q1qdcd23kmhga3ajj0j6fws6y8ag4mpg2b6k";
|
||||
name = "sddm-kcm-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
systemsettings = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/systemsettings-5.4.2.tar.xz";
|
||||
sha256 = "0cq7b3kas7qky199x54770dh4yd2xkbvs9j0cja90vgy4f2vacbs";
|
||||
name = "systemsettings-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/systemsettings-5.4.3.tar.xz";
|
||||
sha256 = "04p455rfxlsp817dqgg907szyfsd0f6ym5kaqaj2g7ys5v8id1vb";
|
||||
name = "systemsettings-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
user-manager = {
|
||||
version = "5.4.2";
|
||||
version = "5.4.3";
|
||||
src = fetchurl {
|
||||
url = "${mirror}/stable/plasma/5.4.2/user-manager-5.4.2.tar.xz";
|
||||
sha256 = "1ikx55yflf8j4f88mdybzk9yfhk24j48h3f6brx6ic2f2dcl7lzm";
|
||||
name = "user-manager-5.4.2.tar.xz";
|
||||
url = "${mirror}/stable/plasma/5.4.3/user-manager-5.4.3.tar.xz";
|
||||
sha256 = "0vnfh5q8fgjs40frsb709r7d0py1xgr40air3zysasw25g4bjca8";
|
||||
name = "user-manager-5.4.3.tar.xz";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
||||
, libglade, libstartup_notification }:
|
||||
, libglade, libstartup_notification
|
||||
, withGtk3 ? false, gtk3
|
||||
}:
|
||||
|
||||
with { inherit (stdenv.lib) optional; };
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "libxfce4ui";
|
||||
@ -14,15 +18,14 @@ stdenv.mkDerivation rec {
|
||||
|
||||
#TODO: gladeui
|
||||
# Install into our own prefix instead.
|
||||
preConfigure =
|
||||
''
|
||||
configureFlags="--with-libglade-module-path=$out/lib/libglade/2.0"
|
||||
'';
|
||||
configureFlags = [
|
||||
"--with-libglade-module-path=$out/lib/libglade/2.0"
|
||||
] ++ optional withGtk3 "--enable-gtk3";
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig intltool gtk libxfce4util xfconf libglade
|
||||
libstartup_notification
|
||||
];
|
||||
] ++ optional withGtk3 gtk3;
|
||||
|
||||
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||
|
||||
|
@ -1,6 +1,10 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui
|
||||
, libwnck, exo, garcon, xfconf, libstartup_notification
|
||||
, makeWrapper, xfce4mixer }:
|
||||
, libxfce4ui_gtk3, libwnck, exo, garcon, xfconf, libstartup_notification
|
||||
, makeWrapper, xfce4mixer
|
||||
, withGtk3 ? false, gtk3
|
||||
}:
|
||||
|
||||
with { inherit (stdenv.lib) optional; };
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-panel";
|
||||
@ -16,11 +20,15 @@ stdenv.mkDerivation rec {
|
||||
patches = [ ./xfce4-panel-datadir.patch ];
|
||||
patchFlags = "-p1";
|
||||
|
||||
configureFlags = optional withGtk3 "--enable-gtk3";
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig intltool gtk libxfce4util exo libwnck
|
||||
garcon xfconf libstartup_notification makeWrapper
|
||||
] ++ xfce4mixer.gst_plugins;
|
||||
propagatedBuildInputs = [ libxfce4ui ];
|
||||
] ++ xfce4mixer.gst_plugins
|
||||
++ optional withGtk3 gtk3;
|
||||
|
||||
propagatedBuildInputs = [ (if withGtk3 then libxfce4ui_gtk3 else libxfce4ui) ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram "$out/bin/xfce4-panel" \
|
||||
|
@ -23,6 +23,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||
garcon = callPackage ./core/garcon.nix { };
|
||||
gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { }; # ToDo: when should be used?
|
||||
libxfce4ui = callPackage ./core/libxfce4ui.nix { };
|
||||
libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; };
|
||||
libxfce4util = callPackage ./core/libxfce4util.nix { };
|
||||
libxfcegui4 = callPackage ./core/libxfcegui4.nix { };
|
||||
thunar = callPackage ./core/thunar.nix { };
|
||||
@ -33,6 +34,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||
= callPackage ./thunar-plugins/dropbox { };
|
||||
tumbler = callPackage ./core/tumbler.nix { };
|
||||
xfce4panel = callPackage ./core/xfce4-panel.nix { }; # ToDo: impure plugins from /run/current-system/sw/lib/xfce4
|
||||
xfce4panel_gtk3 = xfce4panel.override { withGtk3 = true; };
|
||||
xfce4session = callPackage ./core/xfce4-session.nix { };
|
||||
xfce4settings = callPackage ./core/xfce4-settings.nix { };
|
||||
xfce4_power_manager = callPackage ./core/xfce4-power-manager.nix { };
|
||||
@ -68,7 +70,6 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||
|
||||
#### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}"
|
||||
|
||||
|
||||
xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { };
|
||||
xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { };
|
||||
xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
|
||||
@ -79,15 +80,13 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
|
||||
xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { };
|
||||
xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { };
|
||||
xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { };
|
||||
|
||||
xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
|
||||
xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
|
||||
xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
|
||||
xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
|
||||
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
|
||||
|
||||
xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
|
||||
|
||||
xfce4_pulseaudio_plugin = callPackage ./panel-plugins/xfce4-pulseaudio-plugin.nix { };
|
||||
|
||||
}; # xfce_self
|
||||
|
||||
|
36
pkgs/desktops/xfce/panel-plugins/xfce4-pulseaudio-plugin.nix
Normal file
36
pkgs/desktops/xfce/panel-plugins/xfce4-pulseaudio-plugin.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool, libxfce4util, xfce4panel_gtk3, xfconf
|
||||
, gtk3, libpulseaudio
|
||||
, withKeybinder ? true, keybinder3
|
||||
, withLibnotify ? true, libnotify
|
||||
}:
|
||||
|
||||
assert withKeybinder -> keybinder3 != null;
|
||||
assert withLibnotify -> libnotify != null;
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
p_name = "xfce4-pulseaudio-plugin";
|
||||
ver_maj = "0.2";
|
||||
ver_min = "3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.bz2";
|
||||
sha256 = "e82836bc8cf7d905b4e60d43dc630ba8e32dea785989700c71d4aeee9f583b33";
|
||||
};
|
||||
name = "${p_name}-${ver_maj}.${ver_min}";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
buildInputs = [ libxfce4util xfce4panel_gtk3 xfconf gtk3 libpulseaudio ]
|
||||
++ optional withKeybinder keybinder3
|
||||
++ optional withLibnotify libnotify;
|
||||
|
||||
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
||||
|
||||
meta = {
|
||||
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
|
||||
description = "Adjust the audio volume of the PulseAudio sound system";
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
@ -920,7 +920,4 @@ self: super: {
|
||||
librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ];
|
||||
});
|
||||
|
||||
# Re-build this package to fix broken binaries on Hydra.
|
||||
math-functions = triggerRebuild super.math-functions 1;
|
||||
|
||||
}
|
||||
|
@ -212,4 +212,7 @@ self: super: {
|
||||
# https://github.com/DanielG/cabal-helper/issues/10
|
||||
cabal-helper = dontCheck super.cabal-helper;
|
||||
|
||||
# Re-build this package to fix broken binaries on Hydra.
|
||||
math-functions = triggerRebuild super.math-functions 2;
|
||||
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ self: super: {
|
||||
|
||||
# This is the list of packages that are built into a booted ghcjs installation
|
||||
# It can be generated with the command:
|
||||
# nix-shell '<nixpkgs>' -A pkgs.haskellPackages_ghcjs.ghc --command "ghcjs-pkg list | sed -n 's/^ \(.*\)-\([0-9.]*\)$/\1_\2/ p' | sed 's/\./_/g' | sed 's/-\(.\)/\U\1/' | sed 's/^\([^_]*\)\(.*\)$/\1 = null;/'"
|
||||
# nix-shell -p haskell.packages.ghcjs.ghc --command "ghcjs-pkg list | sed -n 's/^ \(.*\)-\([0-9.]*\)$/\1_\2/ p' | sed 's/\./_/g' | sed 's/-\(.\)/\U\1/' | sed 's/^\([^_]*\)\(.*\)$/\1 = null;/'"
|
||||
Cabal = null;
|
||||
aeson = null;
|
||||
array = null;
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3432,6 +3434,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3431,6 +3433,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3431,6 +3433,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3431,6 +3433,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3430,6 +3432,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1157,6 +1157,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1509,6 +1510,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3430,6 +3432,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_6";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1156,6 +1156,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1506,6 +1507,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3427,6 +3429,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1156,6 +1156,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1506,6 +1507,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = dontDistribute super."bank-holidays-england";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3427,6 +3429,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1152,6 +1152,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1502,6 +1503,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3416,6 +3418,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1152,6 +1152,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1501,6 +1502,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3410,6 +3412,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3399,6 +3401,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3398,6 +3400,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3398,6 +3400,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3397,6 +3399,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1150,6 +1150,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1499,6 +1500,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3394,6 +3396,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1149,6 +1149,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1498,6 +1499,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3389,6 +3391,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1152,6 +1152,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1501,6 +1502,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3407,6 +3409,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3405,6 +3407,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3404,6 +3406,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3404,6 +3406,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3402,6 +3404,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1151,6 +1151,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1500,6 +1501,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3401,6 +3403,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_0_7";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1140,6 +1140,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1487,6 +1488,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3365,6 +3367,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1140,6 +1140,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1487,6 +1488,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3364,6 +3366,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1480,6 +1481,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3343,6 +3345,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1479,6 +1480,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3341,6 +3343,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1479,6 +1480,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3341,6 +3343,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1479,6 +1480,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3341,6 +3343,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1478,6 +1479,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3339,6 +3341,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1478,6 +1479,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3338,6 +3340,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1133,6 +1133,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1476,6 +1477,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3331,6 +3333,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_1";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1133,6 +1133,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1474,6 +1475,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3324,6 +3326,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_1";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1132,6 +1132,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1473,6 +1474,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3319,6 +3321,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_1";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1132,6 +1132,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1473,6 +1474,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3318,6 +3320,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_1";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1139,6 +1139,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1486,6 +1487,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3360,6 +3362,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1132,6 +1132,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1473,6 +1474,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3315,6 +3317,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_1";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1132,6 +1132,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1473,6 +1474,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3314,6 +3316,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1131,6 +1131,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1472,6 +1473,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3313,6 +3315,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1139,6 +1139,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1486,6 +1487,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3359,6 +3361,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1139,6 +1139,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1486,6 +1487,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3358,6 +3360,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1139,6 +1139,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1486,6 +1487,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"bank-holidays-england" = doDistribute super."bank-holidays-england_0_1_0_2";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
@ -3357,6 +3359,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1137,6 +1137,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1484,6 +1485,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3354,6 +3356,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1136,6 +1136,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1483,6 +1484,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3353,6 +3355,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1482,6 +1483,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3351,6 +3353,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1135,6 +1135,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1480,6 +1481,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3345,6 +3347,7 @@ self: super: {
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glib" = doDistribute super."glib_0_13_1_0";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
|
@ -1105,6 +1105,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_8_0";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1428,6 +1429,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3195,6 +3197,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3865,6 +3868,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7121,6 +7125,7 @@ self: super: {
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-rerun" = doDistribute super."tasty-rerun_1_1_4";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7693,6 +7698,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7787,6 +7793,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1084,6 +1084,7 @@ self: super: {
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1104,6 +1105,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1426,6 +1428,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3189,6 +3192,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3858,6 +3862,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7110,6 +7115,7 @@ self: super: {
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-rerun" = doDistribute super."tasty-rerun_1_1_4";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7681,6 +7687,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7775,6 +7782,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1070,10 +1070,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1089,9 +1091,11 @@ self: super: {
|
||||
"aeson-bson" = dontDistribute super."aeson-bson";
|
||||
"aeson-casing" = dontDistribute super."aeson-casing";
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1405,6 +1409,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2370,14 +2375,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2509,6 +2518,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3119,6 +3129,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3565,6 +3576,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3780,6 +3792,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5107,6 +5120,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6951,6 +6965,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7513,6 +7528,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7601,6 +7617,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1070,10 +1070,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1089,9 +1091,11 @@ self: super: {
|
||||
"aeson-bson" = dontDistribute super."aeson-bson";
|
||||
"aeson-casing" = dontDistribute super."aeson-casing";
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1404,6 +1408,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2366,14 +2371,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2505,6 +2514,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3113,6 +3123,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3558,6 +3569,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3773,6 +3785,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5099,6 +5112,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6938,6 +6952,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7500,6 +7515,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7588,6 +7604,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1068,10 +1068,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1087,9 +1089,11 @@ self: super: {
|
||||
"aeson-bson" = dontDistribute super."aeson-bson";
|
||||
"aeson-casing" = dontDistribute super."aeson-casing";
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1402,6 +1406,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2360,14 +2365,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2499,6 +2508,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3106,6 +3116,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3550,6 +3561,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3765,6 +3777,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5089,6 +5102,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6926,6 +6940,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7485,6 +7500,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7573,6 +7589,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1068,10 +1068,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1087,9 +1089,11 @@ self: super: {
|
||||
"aeson-bson" = dontDistribute super."aeson-bson";
|
||||
"aeson-casing" = dontDistribute super."aeson-casing";
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1402,6 +1406,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2358,14 +2363,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2497,6 +2506,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3104,6 +3114,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3548,6 +3559,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3762,6 +3774,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -4831,6 +4844,7 @@ self: super: {
|
||||
"luachunk" = dontDistribute super."luachunk";
|
||||
"luautils" = dontDistribute super."luautils";
|
||||
"lub" = dontDistribute super."lub";
|
||||
"lucid" = doDistribute super."lucid_2_9_3";
|
||||
"lucid-foundation" = dontDistribute super."lucid-foundation";
|
||||
"lucienne" = dontDistribute super."lucienne";
|
||||
"luhn" = dontDistribute super."luhn";
|
||||
@ -5083,6 +5097,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6917,6 +6932,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7476,6 +7492,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
"wai-dispatch" = dontDistribute super."wai-dispatch";
|
||||
@ -7563,6 +7580,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1082,6 +1082,7 @@ self: super: {
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1102,6 +1103,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1423,6 +1425,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3184,6 +3187,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3852,6 +3856,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7095,6 +7100,7 @@ self: super: {
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-rerun" = doDistribute super."tasty-rerun_1_1_4";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7666,6 +7672,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7759,6 +7766,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1082,6 +1082,7 @@ self: super: {
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1102,6 +1103,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1422,6 +1424,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3179,6 +3182,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3847,6 +3851,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7084,6 +7089,7 @@ self: super: {
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-rerun" = doDistribute super."tasty-rerun_1_1_4";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7654,6 +7660,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7747,6 +7754,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1082,6 +1082,7 @@ self: super: {
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1102,6 +1103,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1422,6 +1424,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3178,6 +3181,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3846,6 +3850,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7081,6 +7086,7 @@ self: super: {
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-rerun" = doDistribute super."tasty-rerun_1_1_4";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7651,6 +7657,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7743,6 +7750,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1082,6 +1082,7 @@ self: super: {
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1102,6 +1103,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1421,6 +1423,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -3173,6 +3176,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3839,6 +3843,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -7061,6 +7066,7 @@ self: super: {
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7630,6 +7636,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7722,6 +7729,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1077,10 +1077,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1100,6 +1102,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1419,6 +1422,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2397,6 +2401,7 @@ self: super: {
|
||||
"diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_6";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_6";
|
||||
@ -2545,6 +2550,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3163,6 +3169,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3828,6 +3835,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5165,6 +5173,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -7038,6 +7047,7 @@ self: super: {
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7605,6 +7615,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7696,6 +7707,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1076,10 +1076,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1099,6 +1101,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1414,6 +1417,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2390,6 +2394,7 @@ self: super: {
|
||||
"diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_4";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_6";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
@ -2397,6 +2402,7 @@ self: super: {
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_4";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
@ -2535,6 +2541,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3151,6 +3158,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3814,6 +3822,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5147,6 +5156,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -7012,6 +7022,7 @@ self: super: {
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-quickcheck" = doDistribute super."tasty-quickcheck_0_8_3_2";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7578,6 +7589,7 @@ self: super: {
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai" = doDistribute super."wai_3_0_3_0";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7668,6 +7680,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1075,10 +1075,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1098,6 +1100,7 @@ self: super: {
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1413,6 +1416,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2381,14 +2385,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2521,6 +2529,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3137,6 +3146,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3584,6 +3594,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3799,6 +3810,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5130,6 +5142,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6988,6 +7001,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7553,6 +7567,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7643,6 +7658,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
@ -1073,10 +1073,12 @@ self: super: {
|
||||
"acme-timemachine" = dontDistribute super."acme-timemachine";
|
||||
"acme-year" = dontDistribute super."acme-year";
|
||||
"acme-zero" = dontDistribute super."acme-zero";
|
||||
"active" = doDistribute super."active_0_2_0_6";
|
||||
"activehs" = dontDistribute super."activehs";
|
||||
"activehs-base" = dontDistribute super."activehs-base";
|
||||
"activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
|
||||
"actor" = dontDistribute super."actor";
|
||||
"ad" = doDistribute super."ad_4_2_4";
|
||||
"adaptive-containers" = dontDistribute super."adaptive-containers";
|
||||
"adaptive-tuple" = dontDistribute super."adaptive-tuple";
|
||||
"adb" = dontDistribute super."adb";
|
||||
@ -1092,9 +1094,11 @@ self: super: {
|
||||
"aeson-bson" = dontDistribute super."aeson-bson";
|
||||
"aeson-casing" = dontDistribute super."aeson-casing";
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1410,6 +1414,7 @@ self: super: {
|
||||
"bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5";
|
||||
"bamse" = dontDistribute super."bamse";
|
||||
"bamstats" = dontDistribute super."bamstats";
|
||||
"bank-holiday-usa" = dontDistribute super."bank-holiday-usa";
|
||||
"banwords" = dontDistribute super."banwords";
|
||||
"barchart" = dontDistribute super."barchart";
|
||||
"barcodes-code128" = dontDistribute super."barcodes-code128";
|
||||
@ -2375,14 +2380,18 @@ self: super: {
|
||||
"dia-base" = dontDistribute super."dia-base";
|
||||
"dia-functions" = dontDistribute super."dia-functions";
|
||||
"diagrams-canvas" = dontDistribute super."diagrams-canvas";
|
||||
"diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7";
|
||||
"diagrams-core" = doDistribute super."diagrams-core_1_3_0_3";
|
||||
"diagrams-graphviz" = dontDistribute super."diagrams-graphviz";
|
||||
"diagrams-gtk" = dontDistribute super."diagrams-gtk";
|
||||
"diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
|
||||
"diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
|
||||
"diagrams-pdf" = dontDistribute super."diagrams-pdf";
|
||||
"diagrams-pgf" = dontDistribute super."diagrams-pgf";
|
||||
"diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3";
|
||||
"diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
|
||||
"diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
|
||||
"diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_6";
|
||||
"diagrams-tikz" = dontDistribute super."diagrams-tikz";
|
||||
"dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
|
||||
"dicom" = dontDistribute super."dicom";
|
||||
@ -2515,6 +2524,7 @@ self: super: {
|
||||
"dtd-types" = dontDistribute super."dtd-types";
|
||||
"dtrace" = dontDistribute super."dtrace";
|
||||
"dtw" = dontDistribute super."dtw";
|
||||
"dual-tree" = doDistribute super."dual-tree_0_2_0_7";
|
||||
"dump" = dontDistribute super."dump";
|
||||
"duplo" = dontDistribute super."duplo";
|
||||
"dvda" = dontDistribute super."dvda";
|
||||
@ -3128,6 +3138,7 @@ self: super: {
|
||||
"glambda" = dontDistribute super."glambda";
|
||||
"glapp" = dontDistribute super."glapp";
|
||||
"glasso" = dontDistribute super."glasso";
|
||||
"glicko" = dontDistribute super."glicko";
|
||||
"glider-nlp" = dontDistribute super."glider-nlp";
|
||||
"glintcollider" = dontDistribute super."glintcollider";
|
||||
"gll" = dontDistribute super."gll";
|
||||
@ -3575,6 +3586,7 @@ self: super: {
|
||||
"haskell-reflect" = dontDistribute super."haskell-reflect";
|
||||
"haskell-rules" = dontDistribute super."haskell-rules";
|
||||
"haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
|
||||
"haskell-src-meta" = doDistribute super."haskell-src-meta_0_6_0_11";
|
||||
"haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
|
||||
"haskell-token-utils" = dontDistribute super."haskell-token-utils";
|
||||
"haskell-type-exts" = dontDistribute super."haskell-type-exts";
|
||||
@ -3790,6 +3802,7 @@ self: super: {
|
||||
"himerge" = dontDistribute super."himerge";
|
||||
"himg" = dontDistribute super."himg";
|
||||
"himpy" = dontDistribute super."himpy";
|
||||
"hindent" = doDistribute super."hindent_4_5_4";
|
||||
"hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
|
||||
"hinduce-classifier" = dontDistribute super."hinduce-classifier";
|
||||
"hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
|
||||
@ -5120,6 +5133,7 @@ self: super: {
|
||||
"mono-foldable" = dontDistribute super."mono-foldable";
|
||||
"mono-traversable" = doDistribute super."mono-traversable_0_9_3";
|
||||
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
|
||||
"monoid-extras" = doDistribute super."monoid-extras_0_4_0_2";
|
||||
"monoid-owns" = dontDistribute super."monoid-owns";
|
||||
"monoid-record" = dontDistribute super."monoid-record";
|
||||
"monoid-statistics" = dontDistribute super."monoid-statistics";
|
||||
@ -6976,6 +6990,7 @@ self: super: {
|
||||
"tasty-laws" = dontDistribute super."tasty-laws";
|
||||
"tasty-lens" = dontDistribute super."tasty-lens";
|
||||
"tasty-program" = dontDistribute super."tasty-program";
|
||||
"tasty-silver" = doDistribute super."tasty-silver_3_1_7";
|
||||
"tasty-tap" = dontDistribute super."tasty-tap";
|
||||
"tau" = dontDistribute super."tau";
|
||||
"tbox" = dontDistribute super."tbox";
|
||||
@ -7541,6 +7556,7 @@ self: super: {
|
||||
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
|
||||
"waddle" = dontDistribute super."waddle";
|
||||
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
|
||||
"wai-app-static" = doDistribute super."wai-app-static_3_1_1";
|
||||
"wai-cors" = doDistribute super."wai-cors_0_2_3";
|
||||
"wai-devel" = dontDistribute super."wai-devel";
|
||||
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
|
||||
@ -7631,6 +7647,7 @@ self: super: {
|
||||
"webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
|
||||
"webkitgtk3" = dontDistribute super."webkitgtk3";
|
||||
"webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
|
||||
"webpage" = doDistribute super."webpage_0_0_3_1";
|
||||
"webrtc-vad" = dontDistribute super."webrtc-vad";
|
||||
"webserver" = dontDistribute super."webserver";
|
||||
"websnap" = dontDistribute super."websnap";
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,12 @@
|
||||
{ stdenv, fetchurl, cmake, boost, gmp, mpfr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.6.1";
|
||||
|
||||
name = "cgal-${version}";
|
||||
version = "4.7";
|
||||
name = "cgal-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/CGAL/releases/archive/CGAL-${version}.tar.gz";
|
||||
sha256 = "05vk4l62d7g6cz19q36h1an5krxdbgq1fbs5hi0x2l7blsja1z6g";
|
||||
sha256 = "1hbp4qpfqvpggvv79yxr6z3w7y0nwd31zavb1s57y55yl9z3zfxy";
|
||||
};
|
||||
|
||||
# note: optional component libCGAL_ImageIO would need zlib and opengl;
|
||||
@ -18,9 +17,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Computational Geometry Algorithms Library";
|
||||
homepage = "http://cgal.org/";
|
||||
homepage = http://cgal.org;
|
||||
license = licenses.gpl3Plus; # some parts are GPLv3+, some are LGPLv3+
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.raskin ];
|
||||
};
|
||||
}
|
||||
|
@ -138,6 +138,10 @@
|
||||
, optimizationsDeveloper ? true
|
||||
, extraWarningsDeveloper ? false
|
||||
, strippingDeveloper ? false
|
||||
/*
|
||||
* Darwin frameworks
|
||||
*/
|
||||
, Cocoa, CoreServices
|
||||
}:
|
||||
|
||||
/* Maintainer notes:
|
||||
@ -405,7 +409,8 @@ stdenv.mkDerivation rec {
|
||||
++ optionals x11grabExtlib [ libXext libXfixes ]
|
||||
++ optionals nonfreeLicensing [ faac fdk_aac openssl ]
|
||||
++ optional ((isLinux || isFreeBSD) && libva != null) libva
|
||||
++ optionals isLinux [ alsaLib libraw1394 libv4l ];
|
||||
++ optionals isLinux [ alsaLib libraw1394 libv4l ]
|
||||
++ optionals stdenv.isDarwin [ Cocoa CoreServices ];
|
||||
|
||||
# Build qt-faststart executable
|
||||
buildPhase = optional qtFaststartProgram ''make tools/qt-faststart'';
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ stdenv, fetchurl, libraw1394, libusb1 }:
|
||||
{ stdenv, fetchurl, libraw1394, libusb1
|
||||
, CoreServices
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libdc1394-2.2.3";
|
||||
@ -9,7 +11,8 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
buildInputs = [ libusb1 ]
|
||||
++ stdenv.lib.optional stdenv.isLinux [ libraw1394 ];
|
||||
++ stdenv.lib.optional stdenv.isLinux libraw1394
|
||||
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
||||
|
||||
meta = {
|
||||
homepage = http://sourceforge.net/projects/libdc1394/;
|
||||
|
@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libevdev-1.4.4";
|
||||
name = "libevdev-1.4.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz";
|
||||
sha256 = "1aa5pj2ivhvpxcbvgh80ghmzpkwyahw9a2bxi7sjhvkakcv7k6gd";
|
||||
sha256 = "07faqb47c7sjl25rc788cbslyiv5ijky0jc4g6312qz0hv55h779";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# Fix some binary paths
|
||||
sed -i -e 's|/usr/bin/xauth|${xauth}/bin/xauth|g' libgksu/gksu-run-helper.c libgksu/libgksu.c
|
||||
sed -i -e 's|/usr/bin/sudo|${sudo}/bin/sudo|g' libgksu/libgksu.c
|
||||
sed -i -e 's|/usr/bin/sudo|/var/setuid-wrappers/sudo|g' libgksu/libgksu.c
|
||||
sed -i -e 's|/bin/su\([^d]\)|/var/setuid-wrappers/su\1|g' libgksu/libgksu.c
|
||||
|
||||
touch NEWS README
|
||||
|
@ -5,10 +5,10 @@ let
|
||||
|
||||
version = "${libVersion}-list-${listVersion}";
|
||||
|
||||
listVersion = "2015-10-11";
|
||||
listVersion = "2015-11-12";
|
||||
listSources = fetchFromGitHub {
|
||||
sha256 = "1zvfywi43kyh7b6hsm8ldmdypk9n36jzp0s1lf2rzd4yzcyxwgzy";
|
||||
rev = "8952c0c398ba44d507a8ed430fd1cff7b92dfde8";
|
||||
sha256 = "1cwzazhvgzcp6xapk3d11ssfkq9cxmwljfd7bys7w15jfsn6r8d1";
|
||||
rev = "2adac6ff0f612543c4e8bf9a7219d52b0386870e";
|
||||
repo = "list";
|
||||
owner = "publicsuffix";
|
||||
};
|
||||
|
@ -1,4 +1,6 @@
|
||||
{ stdenv, fetchurl, flac, libogg, libvorbis, pkgconfig }:
|
||||
{ stdenv, fetchurl, flac, libogg, libvorbis, pkgconfig
|
||||
, Carbon
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libsndfile-1.0.25";
|
||||
@ -8,7 +10,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "10j8mbb65xkyl0kfy0hpzpmrp0jkr12c7mfycqipxgka6ayns0ar";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig flac libogg libvorbis ];
|
||||
buildInputs = [ pkgconfig flac libogg libvorbis ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin Carbon;
|
||||
|
||||
# need headers from the Carbon.framework in /System/Library/Frameworks to
|
||||
# compile this on darwin -- not sure how to handle
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl, libiconv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wavpack-${version}";
|
||||
@ -6,6 +6,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||
|
||||
patches = [
|
||||
# backported from
|
||||
# https://github.com/dbry/WavPack/commit/12867b33e2de3e95b88d7cb6f449ce0c5c87cdd5
|
||||
|
@ -1,51 +1,12 @@
|
||||
{stdenv, fetchurl, ocaml, findlib}:
|
||||
{ stdenv, fetchurl, ocaml, findlib
|
||||
, version ? if stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02" then "20151110" else "20140422"
|
||||
}@args:
|
||||
|
||||
let
|
||||
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
||||
sha256 =
|
||||
if version == "20140422" then "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d"
|
||||
else if version == "20151110" then "12ijr1gd808f79d7k7ji9zg23xr4szayfgvm6njqamh0jnspq70r"
|
||||
else throw ("menhir: unknown version " ++ version);
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "menhir-20140422";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://pauillac.inria.fr/~fpottier/menhir/menhir-20140422.tar.gz;
|
||||
sha256 = "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d";
|
||||
};
|
||||
|
||||
buildInputs = [ocaml findlib];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
preBuild = ''
|
||||
#Fix makefiles.
|
||||
RM=$(type -p rm)
|
||||
CHMOD=$(type -p chmod)
|
||||
ENV=$(type -p env)
|
||||
for f in src/Makefile demos/OMakefile* demos/Makefile* demos/ocamldep.wrapper
|
||||
do
|
||||
substituteInPlace $f \
|
||||
--replace /bin/rm $RM \
|
||||
--replace /bin/chmod $CHMOD \
|
||||
--replace /usr/bin/env $ENV
|
||||
done
|
||||
|
||||
export PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pauillac.inria.fr/~fpottier/menhir/;
|
||||
description = "A LR(1) parser generator for OCaml";
|
||||
longDescription = ''
|
||||
Menhir is a LR(1) parser generator for the Objective Caml programming
|
||||
language. That is, Menhir compiles LR(1) grammar specifications down
|
||||
to OCaml code. Menhir was designed and implemented by François Pottier
|
||||
and Yann Régis-Gianas.
|
||||
'';
|
||||
license = with licenses; [
|
||||
qpl /* generator */
|
||||
lgpl2 /* library */
|
||||
];
|
||||
platforms = ocaml.meta.platforms;
|
||||
maintainers = with maintainers; [ z77z ];
|
||||
};
|
||||
}
|
||||
import ./generic.nix (args // { inherit version sha256; })
|
||||
|
47
pkgs/development/ocaml-modules/menhir/generic.nix
Normal file
47
pkgs/development/ocaml-modules/menhir/generic.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ version, sha256, stdenv, fetchurl, ocaml, findlib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "menhir-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pauillac.inria.fr/~fpottier/menhir/menhir-${version}.tar.gz";
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
preBuild = ''
|
||||
#Fix makefiles.
|
||||
RM=$(type -p rm)
|
||||
CHMOD=$(type -p chmod)
|
||||
ENV=$(type -p env)
|
||||
for f in src/Makefile demos/OMakefile* demos/Makefile* demos/ocamldep.wrapper
|
||||
do
|
||||
substituteInPlace $f \
|
||||
--replace /bin/rm $RM \
|
||||
--replace /bin/chmod $CHMOD \
|
||||
--replace /usr/bin/env $ENV
|
||||
done
|
||||
|
||||
export PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://pauillac.inria.fr/~fpottier/menhir/;
|
||||
description = "A LR(1) parser generator for OCaml";
|
||||
longDescription = ''
|
||||
Menhir is a LR(1) parser generator for the Objective Caml programming
|
||||
language. That is, Menhir compiles LR(1) grammar specifications down
|
||||
to OCaml code. Menhir was designed and implemented by François Pottier
|
||||
and Yann Régis-Gianas.
|
||||
'';
|
||||
license = with licenses; [
|
||||
qpl /* generator */
|
||||
lgpl2 /* library */
|
||||
];
|
||||
platforms = ocaml.meta.platforms;
|
||||
maintainers = with maintainers; [ z77z ];
|
||||
};
|
||||
}
|
@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "jenkins-${version}";
|
||||
version = "1.636";
|
||||
version = "1.638";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
|
||||
sha256 = "1j6wz5npgsgnkg5xyf3ylrziasxwx5plqr72zwx41a83yvncyx3k";
|
||||
sha256 = "1kbx9n2hj8znw0ykvgvrlf2v472f1nkdwix6a2v4rjxkgmghxmh8";
|
||||
};
|
||||
meta = with stdenv.lib; {
|
||||
description = "An extendable open source continuous integration server";
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, perl }:
|
||||
{ stdenv, fetchurl, perl, libunwind }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "strace-4.10";
|
||||
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ perl ];
|
||||
|
||||
buildInputs = [ libunwind ]; # support -k
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://strace.sourceforge.net/;
|
||||
description = "A system call tracer for Linux";
|
||||
|
18
pkgs/games/macopix/default.nix
Normal file
18
pkgs/games/macopix/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "macopix-1.7.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://rosegray.sakura.ne.jp/macopix/${name}.tar.bz2";
|
||||
sha256 = "0sgnr0wrw3hglcnsyvipll7icfv69ssmyw584zfhk1rgramlkzyb";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig gtk openssl ];
|
||||
|
||||
meta = {
|
||||
description = "Mascot Constructive Pilot for X";
|
||||
homepage = http://rosegray.sakura.ne.jp/macopix/index-e.html;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user