Merge remote-tracking branch 'origin/master' into haskell-updates.
This commit is contained in:
@@ -1510,6 +1510,11 @@ self: super: {
|
||||
sha256 = "0g2m0y46zr3xs9fswkm4h9adhsg6gzl5zwgidshsjh3k3rq4h7b1";
|
||||
});
|
||||
|
||||
# https://github.com/ekmett/half/issues/35
|
||||
half = if pkgs.stdenv.isAarch64
|
||||
then dontCheck super.half
|
||||
else super.half;
|
||||
|
||||
# 2020-11-19: Jailbreaking until: https://github.com/snapframework/heist/pull/124
|
||||
heist = doJailbreak super.heist;
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@ self: super:
|
||||
base template-haskell ghcjs-base split containers text ghc-prim
|
||||
];
|
||||
description = "FFI QuasiQuoter for GHCJS";
|
||||
license = pkgs.stdenv.lib.licenses.mit;
|
||||
license = pkgs.lib.licenses.mit;
|
||||
}) {};
|
||||
# experimental
|
||||
ghcjs-vdom = self.callPackage
|
||||
@@ -112,7 +112,7 @@ self: super:
|
||||
base ghc-prim ghcjs-ffiqq ghcjs-base ghcjs-prim containers split
|
||||
template-haskell
|
||||
];
|
||||
license = pkgs.stdenv.lib.licenses.mit;
|
||||
license = pkgs.lib.licenses.mit;
|
||||
description = "bindings for https://github.com/Matt-Esch/virtual-dom";
|
||||
}) {};
|
||||
|
||||
|
||||
@@ -711,7 +711,7 @@ self: super: builtins.intersectAttrs super {
|
||||
|
||||
# mplayer-spot uses mplayer at runtime.
|
||||
mplayer-spot =
|
||||
let path = pkgs.stdenv.lib.makeBinPath [ pkgs.mplayer ];
|
||||
let path = pkgs.lib.makeBinPath [ pkgs.mplayer ];
|
||||
in overrideCabal (addBuildTool super.mplayer-spot pkgs.makeWrapper) (oldAttrs: {
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/mplayer-spot --prefix PATH : "${path}"
|
||||
@@ -723,7 +723,7 @@ self: super: builtins.intersectAttrs super {
|
||||
primitive_0_7_1_0 = dontCheck super.primitive_0_7_1_0;
|
||||
|
||||
cut-the-crap =
|
||||
let path = pkgs.stdenv.lib.makeBinPath [ pkgs.ffmpeg_3 pkgs.youtube-dl ];
|
||||
let path = pkgs.lib.makeBinPath [ pkgs.ffmpeg_3 pkgs.youtube-dl ];
|
||||
in overrideCabal (addBuildTool super.cut-the-crap pkgs.makeWrapper) (_drv: {
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/cut-the-crap \
|
||||
|
||||
Reference in New Issue
Block a user