-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathflake.nix
35 lines (34 loc) · 960 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
nixConfig = {
bash-prompt = "\[hasktorch-skeleton$(__git_ps1 \" (%s)\")\]$ ";
};
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:junjihashimoto/nixpkgs?rev=5c77923028d8ec6c54dc9820e44bced372c68f3d";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
config.cudaSupport = system == "x86_64-linux";
};
ghcWithHasktorch = pkgs.haskellPackages.ghcWithPackages (pkgs: with pkgs; [
hasktorch
haskell-language-server
]);
in
{
devShell = with pkgs; mkShell {
buildInputs = [
ghcWithHasktorch
cabal-install
stack
];
shellHook = ''
source ${git}/share/bash-completion/completions/git-prompt.sh
'';
};
});
}