pop
This commit is contained in:
parent
fdf2c3d130
commit
724e243159
@ -57,6 +57,15 @@ self: super: {
|
|||||||
# Link the proper version.
|
# Link the proper version.
|
||||||
zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };
|
zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };
|
||||||
|
|
||||||
|
WordNet = pkgs.stdenv.lib.overrideDerivation super.WordNet (drv: {
|
||||||
|
src = ~/.dev/Haskell/WordNet-1.1.0;
|
||||||
|
postPatch = (drv.postPatch or "") + ''
|
||||||
|
substituteInPlace NLP/WordNet/Consts.hs \
|
||||||
|
--replace /usr/local/WordNet-2.0 ${pkgs.wordnet} \
|
||||||
|
--replace 'defined (MAC)' 0
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
# This package needs a little help compiling properly on Darwin. Furthermore,
|
# This package needs a little help compiling properly on Darwin. Furthermore,
|
||||||
# Stackage compiles git-annex without the Assistant, supposedly because not
|
# Stackage compiles git-annex without the Assistant, supposedly because not
|
||||||
# all required dependencies are part of Stackage. To comply with Stackage, we
|
# all required dependencies are part of Stackage. To comply with Stackage, we
|
||||||
|
@ -54,7 +54,7 @@ rec {
|
|||||||
if system == "armv7l-linux" then stdenvLinux else
|
if system == "armv7l-linux" then stdenvLinux else
|
||||||
if system == "mips64el-linux" then stdenvLinux else
|
if system == "mips64el-linux" then stdenvLinux else
|
||||||
if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else
|
if system == "powerpc-linux" then /* stdenvLinux */ stdenvNative else
|
||||||
if system == "x86_64-darwin" then stdenvDarwin else
|
if system == "x86_64-darwin" then stdenvDarwinPure else
|
||||||
if system == "x86_64-solaris" then stdenvNix else
|
if system == "x86_64-solaris" then stdenvNix else
|
||||||
if system == "i686-cygwin" then stdenvNative else
|
if system == "i686-cygwin" then stdenvNative else
|
||||||
if system == "x86_64-cygwin" then stdenvNative else
|
if system == "x86_64-cygwin" then stdenvNative else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user