packages feed

cabal2nix-2.9.3: test/golden-test-cases/tce-conf.nix.golden

{ mkDerivation, base, containers, HUnit, stdenv }:
mkDerivation {
  pname = "tce-conf";
  version = "1.3";
  sha256 = "deadbeef";
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ base containers ];
  executableHaskellDepends = [ base containers ];
  testHaskellDepends = [ base containers HUnit ];
  homepage = "http://hub.darcs.net/dino/tce-conf";
  description = "Very simple config file reading";
  license = stdenv.lib.licenses.bsd3;
}