cabal2nix-2.19.0: test/golden-test-cases/hsinstall.nix.golden
{ mkDerivation, base, directory, filepath, lib }:
mkDerivation {
pname = "hsinstall";
version = "1.6";
sha256 = "deadbeef";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base directory filepath ];
executableHaskellDepends = [ base directory filepath ];
description = "Install Haskell software";
license = lib.licenses.isc;
mainProgram = "an-app";
}