-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
30 lines (24 loc) · 884 Bytes
/
shell.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
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
let
inherit (nixpkgs) pkgs;
f = { cabal-install, mkDerivation, aeson, base, bytestring, directory, filepath
, gloss, lens, mtl, network, process, random, stdenv, transformers
, uuid
}:
mkDerivation {
pname = "botstrats";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
buildDepends = [ cabal-install
aeson base bytestring directory filepath gloss lens mtl network
process random transformers uuid
];
homepage = "https://github.com/shak-mar/botstrats";
description = "A strategy game that makes you program robots";
license = stdenv.lib.licenses.mit;
};
drv = pkgs.haskell.packages.${compiler}.callPackage f {};
in
if pkgs.lib.inNixShell then drv.env else drv