cabal2nix-2.9: test/golden-test-cases/servant-checked-exceptions.nix.golden
{ mkDerivation, aeson, base, bytestring, deepseq, doctest, fetchurl
, Glob, hspec-wai, http-media, 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";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
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 = stdenv.lib.licenses.bsd3;
}