packages feed

cabal2nix-2.8.2: test/golden-test-cases/explicit-exception.nix.golden

{ mkDerivation, base, deepseq, fetchurl, transformers }:
mkDerivation {
  pname = "explicit-exception";
  version = "0.1.9";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ base deepseq transformers ];
  homepage = "http://www.haskell.org/haskellwiki/Exception";
  description = "Exceptions which are explicit in the type signature";
  license = stdenv.lib.licenses.bsd3;
}