packages feed

cabal2nix-2.8.2: test/golden-test-cases/amazonka-codedeploy.nix.golden

{ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, fetchurl, tasty, tasty-hunit, text, time, unordered-containers
}:
mkDerivation {
  pname = "amazonka-codedeploy";
  version = "1.5.0";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [ amazonka-core base ];
  testHaskellDepends = [
    amazonka-core amazonka-test base bytestring tasty tasty-hunit text
    time unordered-containers
  ];
  homepage = "https://github.com/brendanhay/amazonka";
  description = "Amazon CodeDeploy SDK";
  license = stdenv.lib.licenses.mpl20;
}