about summary refs log tree commit diff
path: root/grav2ty.nix
blob: 6c416ff87df9372cfd9d765182d2bf3536ca3be7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, aeson, base, bytestring, containers, flat, gloss
, lens, linear, stdenv, tasty, tasty-quickcheck
}:
mkDerivation {
  pname = "grav2ty";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  libraryHaskellDepends = [
    aeson base bytestring containers flat lens linear
  ];
  executableHaskellDepends = [ base containers gloss lens linear ];
  testHaskellDepends = [ base tasty tasty-quickcheck ];
  enableLibraryProfiling = true;
  enableExecutableProfiling = true;
  doHaddock = true;
  description = "a 2d space (ship) game with realistic physics-based gameplay";
  license = stdenv.lib.licenses.gpl3;
}