Skip to content
Snippets Groups Projects
Commit f505de6d authored by Akshay Mankar's avatar Akshay Mankar
Browse files

Add default.nix using cabal2nix

parent 7fbe74d4
No related branches found
No related tags found
No related merge requests found
{ mkDerivation, base, bytestring, mtl, optparse-applicative
, optparse-generic, servant, servant-server, shelly, stdenv, text
, warp, zlib
}:
mkDerivation {
pname = "terraform-http-backend-pass";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bytestring mtl optparse-applicative optparse-generic servant
servant-server shelly text warp
];
librarySystemDepends = [ zlib ];
executableHaskellDepends = [ base ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment