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
199
Issues
199
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
5f575c96
Verified
Commit
5f575c96
authored
Jul 22, 2025
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[nix] add openblas + nix-fmt hook got triggered
parent
0b67905c
Pipeline
#7766
passed with stages
in 86 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
13 deletions
+17
-13
pkgs.nix
nix/pkgs.nix
+17
-13
No files found.
nix/pkgs.nix
View file @
5f575c96
{
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
...
@@ -56,9 +60,9 @@ rec {
...
@@ -56,9 +60,9 @@ rec {
zlib
zlib
zeromq
zeromq
curl
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