packages feed

cabal2nix-2.8.2: test/golden-test-cases/app-settings.nix.golden

{ mkDerivation, base, containers, directory, fetchurl, hspec, HUnit
, mtl, parsec, text
}:
mkDerivation {
  pname = "app-settings";
  version = "0.2.0.11";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    base containers directory mtl parsec text
  ];
  testHaskellDepends = [
    base containers directory hspec HUnit mtl parsec text
  ];
  homepage = "https://github.com/emmanueltouzery/app-settings";
  description = "A library to manage application settings (INI file-like)";
  license = stdenv.lib.licenses.bsd3;
}