aboutsummaryrefslogtreecommitdiff
path: root/picarones-hs/build.nix
blob: c61d763a6e26a628a159718f74dcd7232829be44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation, aeson, base, bytestring, stdenv, text
, unordered-containers, websockets
}:
mkDerivation {
  pname = "picarones-hs";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson base bytestring text unordered-containers websockets
  ];
  license = "unknown";
  hydraPlatforms = stdenv.lib.platforms.none;
}