packages feed

cabal2nix-2.19.0: test/golden-test-cases/profiterole.nix.golden

{ mkDerivation, base, containers, directory, extra, filepath
, ghc-prof, hashable, lib, scientific, text
}:
mkDerivation {
  pname = "profiterole";
  version = "0.1";
  sha256 = "deadbeef";
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base containers directory extra filepath ghc-prof hashable
    scientific text
  ];
  homepage = "https://github.com/ndmitchell/profiterole#readme";
  description = "Restructure GHC profile reports";
  license = lib.licenses.bsd3;
  mainProgram = "profiterole";
}