Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Julien Moutinho
haskell-gargantext
Commits
bab85a28
Commit
bab85a28
authored
May 28, 2024
by
Julien Moutinho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: workaround
https://gitlab.haskell.org/ghc/ghc/-/issues/23138#note_567034
parent
5e430314
Pipeline
#6160
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
29 deletions
+44
-29
flake.nix
flake.nix
+44
-29
No files found.
flake.nix
View file @
bab85a28
...
@@ -301,35 +301,50 @@
...
@@ -301,35 +301,50 @@
pkgs
.
haskell
.
packages
.
${
config
.
compiler-nix-name
}
.
hlint
pkgs
.
haskell
.
packages
.
${
config
.
compiler-nix-name
}
.
hlint
];
];
shellHook
=
''
shellHook
=
export GARGANTEXT_CORENLP_SERVER="nix -L run .#coreNLP"
let
# Workaround https://gitlab.haskell.org/ghc/ghc/-/issues/23138#note_567034
cp -f
${
pkgs
.
buildPackages
.
writeText
"cabal.project.local"
''
libcxx-workaround
=
pkgs
.
symlinkJoin
{
-- Same fix as in haskell.nix's packages.haskell-igraph.components.library,
name
=
"libcxx-workaround"
;
-- but for cabal-install
paths
=
[
pkgs
.
libcxx
];
package haskell-igraph
postBuild
=
"ln -s libc++.so $out/lib/c++"
;
extra-include-dirs:
${
pkgs
.
igraph
.
dev
}
/include/igraph
};
extra-lib-dirs:
${
lib
.
concatMapStringsSep
" "
(
p
:
"
${
lib
.
getLib
p
}
/lib"
)
[
in
pkgs
.
igraph
''
pkgs
.
openblas
export GARGANTEXT_CORENLP_SERVER="nix -L run .#coreNLP"
]
}
-- Enable openblas
cp -f
${
pkgs
.
buildPackages
.
writeText
"cabal.project.local"
''
constraints: hmatrix +openblas
package accelerate
package hmatrix
cc-options: -B
${
libcxx-workaround
}
/lib
flags: +openblas
cxx-options: -B
${
libcxx-workaround
}
/lib
extra-lib-dirs:
${
lib
.
concatMapStringsSep
" "
(
p
:
"
${
lib
.
getLib
p
}
/lib"
)
[
pkgs
.
openblas
]
}
package double-conversion
''
}
cabal.project.local
cc-options: -B
${
libcxx-workaround
}
/lib
cxx-options: -B
${
libcxx-workaround
}
/lib
cat >&2
${
pkgs
.
buildPackages
.
writeText
"shellEnterMessage.txt"
''
-- Same fix as in haskell.nix's packages.haskell-igraph.components.library,
-- but for cabal-install
**Warning**
package haskell-igraph
This Nix development shell is not configured to provision
extra-include-dirs:
${
pkgs
.
igraph
.
dev
}
/include/igraph
`cabal.project`'s `source-repository-package`s and their reverse dependencies,
extra-lib-dirs:
${
lib
.
concatMapStringsSep
" "
(
p
:
"
${
lib
.
getLib
p
}
/lib"
)
[
therefore `cabal update` has to be run manually to fetch an `index-state`
pkgs
.
igraph
before `cabal build`.
pkgs
.
openblas
''
}
]
}
''
+
-- Enable openblas
self
.
checks
.
${
system
}
.
git-hooks-check
.
shellHook
;
constraints: hmatrix +openblas
package hmatrix
flags: +openblas
extra-lib-dirs:
${
lib
.
concatMapStringsSep
" "
(
p
:
"
${
lib
.
getLib
p
}
/lib"
)
[
pkgs
.
openblas
]
}
''
}
cabal.project.local
cat >&2
${
pkgs
.
buildPackages
.
writeText
"shellEnterMessage.txt"
''
**Warning**
This Nix development shell is not configured to provision
`cabal.project`'s `source-repository-package`s and their reverse dependencies,
therefore `cabal update` has to be run manually to fetch an `index-state`
before `cabal build`.
''
}
''
+
self
.
checks
.
${
system
}
.
git-hooks-check
.
shellHook
;
# When true, builds a Hoogle documentation index of all dependencies,
# When true, builds a Hoogle documentation index of all dependencies,
# and provides a "hoogle" command to search the index.
# and provides a "hoogle" command to search the index.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment