packages feed

cabal2nix-2.16.0: test/golden-test-cases/servant-checked-exceptions.nix.golden

{ mkDerivation, aeson, base, bytestring, deepseq, doctest, Glob
, hspec-wai, http-media, lib, profunctors, servant, servant-client
, servant-docs, servant-server, tagged, tasty, tasty-hspec
, tasty-hunit, text, wai
}:
mkDerivation {
  pname = "servant-checked-exceptions";
  version = "0.4.1.0";
  sha256 = "deadbeef";
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    aeson base bytestring deepseq http-media profunctors servant
    servant-client servant-docs servant-server tagged text
  ];
  testHaskellDepends = [
    base bytestring doctest Glob hspec-wai servant servant-server tasty
    tasty-hspec tasty-hunit wai
  ];
  homepage = "https://github.com/cdepillabout/servant-checked-exceptions";
  description = "Checked exceptions for Servant APIs";
  license = lib.licenses.bsd3;
}