-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
40 lines (39 loc) · 1.14 KB
/
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
36
37
38
39
40
{
nixConfig = {
bash-prompt = "\[hasktorch-compose$(__git_ps1 \" (%s)\")\]$ ";
};
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs?rev=01d7c7caba0f021e986f7e46fae3c8e41265a145";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
config.cudaSupport = system == "x86_64-linux";
# config.ihaskell.packages = pkgs: with pkgs; [
# hasktorch
# hvega
# ];
};
ghcWithHasktorch = pkgs.haskellPackages.ghcWithPackages (pkgs: with pkgs; [
hasktorch
haskell-language-server
]);
in {
defaultPackage = pkgs.haskellPackages.callCabal2nix "hasktorch-skeleton" ./. {};
devShell = with pkgs; mkShell {
buildInputs = [
ghcWithHasktorch
cabal-install
stack
# ihaskell
];
shellHook = ''
source ${git}/share/bash-completion/completions/git-prompt.sh
'';
};
});
}