about summary refs log tree commit diff
path: root/likely-music-backend.nix
blob: b5101bfe8e3635740a65b9aa9b0153f87c90aca6 (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, directory
, Euterpea, filepath, HCodecs, PortMidi, process, random, servant
, servant-server, stdenv, text, wai, wai-app-static, warp
}:
mkDerivation {
  pname = "likely-music";
  version = "0.1.1";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    aeson base containers Euterpea PortMidi random text
  ];
  executableHaskellDepends = [
    aeson base bytestring containers directory Euterpea filepath
    HCodecs process random servant servant-server text wai
    wai-app-static warp
  ];
  license = stdenv.lib.licenses.agpl3;
}