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
195
Issues
195
List
Board
Labels
Milestones
Merge Requests
12
Merge Requests
12
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
gargantext
haskell-gargantext
Commits
88d58d5e
Verified
Commit
88d58d5e
authored
Jul 10, 2025
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[nix] add openblas + nixpkgs-fmt
parent
7ec89420
Pipeline
#7744
passed with stages
in 56 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
14 deletions
+17
-14
pkgs.nix
nix/pkgs.nix
+17
-14
No files found.
nix/pkgs.nix
View file @
88d58d5e
{
pkgs
?
import
(
if
builtins
.
elem
builtins
.
currentSystem
[
"x86_64-darwin"
"aarch64-darwin"
]
{
pkgs
?
import
then
./pinned-25.05.darwin.nix
(
if
builtins
.
elem
builtins
.
currentSystem
[
"x86_64-darwin"
"aarch64-darwin"
]
else
./pinned-25.05.nix
)
{}
}:
then
./pinned-25.05.darwin.nix
else
./pinned-25.05.nix
)
{
}
}:
rec
{
rec
{
inherit
pkgs
;
inherit
pkgs
;
ghc966
=
pkgs
.
haskell
.
compiler
.
ghc966
;
ghc966
=
pkgs
.
haskell
.
compiler
.
ghc966
;
cabal_install
=
pkgs
.
haskell
.
lib
.
compose
.
justStaticExecutables
pkgs
.
haskell
.
packages
.
ghc966
.
cabal-install
;
cabal_install
=
pkgs
.
haskell
.
lib
.
compose
.
justStaticExecutables
pkgs
.
haskell
.
packages
.
ghc966
.
cabal-install
;
graphviz
=
pkgs
.
callPackage
./graphviz.nix
{};
graphviz
=
pkgs
.
callPackage
./graphviz.nix
{
};
igraph_0_10_4
=
pkgs
.
callPackage
./igraph.nix
{};
igraph_0_10_4
=
pkgs
.
callPackage
./igraph.nix
{
};
corenlp
=
pkgs
.
callPackage
./corenlp.nix
{
};
# 4.5.8
corenlp
=
pkgs
.
callPackage
./corenlp.nix
{
};
# 4.5.8
cabal2stack
=
pkgs
.
callPackage
./cabal2stack.nix
{
ghc
=
ghc966
;
};
cabal2stack
=
pkgs
.
callPackage
./cabal2stack.nix
{
ghc
=
ghc966
;
};
nng_notls
=
pkgs
.
nng
.
overrideAttrs
(
old
:
{
nng_notls
=
pkgs
.
nng
.
overrideAttrs
(
old
:
{
cmakeFlags
=
(
old
.
cmakeFlags
or
[])
++
[
"-DNNG_ENABLE_TLS=OFF"
];
cmakeFlags
=
(
old
.
cmakeFlags
or
[
])
++
[
"-DNNG_ENABLE_TLS=OFF"
];
});
});
hsBuildInputs
=
[
hsBuildInputs
=
[
ghc966
ghc966
cabal_install
cabal_install
...
@@ -47,7 +50,8 @@ rec {
...
@@ -47,7 +50,8 @@ rec {
libpqxx
libpqxx
libsodium
libsodium
nng_notls
nng_notls
nil
# nix language server
nil
# nix language server
openblas
pcre
pcre
pkg-config
pkg-config
postgresql
postgresql
...
@@ -55,10 +59,9 @@ rec {
...
@@ -55,10 +59,9 @@ rec {
xz
xz
zlib
zlib
zeromq
zeromq
curl
]
++
(
lib
.
optionals
stdenv
.
isDarwin
[
]
++
(
lib
.
optionals
stdenv
.
isDarwin
[
darwin
.
apple_sdk
.
frameworks
.
Accelerate
darwin
.
apple_sdk
.
frameworks
.
Accelerate
]);
]);
libPaths
=
pkgs
.
lib
.
makeLibraryPath
nonhsBuildInputs
;
libPaths
=
pkgs
.
lib
.
makeLibraryPath
nonhsBuildInputs
;
shellHook
=
''
shellHook
=
''
export LD_LIBRARY_PATH="
${
pkgs
.
gfortran
.
cc
.
lib
}
:
${
libPaths
}
:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="
${
pkgs
.
gfortran
.
cc
.
lib
}
:
${
libPaths
}
:$LD_LIBRARY_PATH"
...
...
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