cabal2nix-2.19.0: test/golden-test-cases/happy.nix.golden
{ mkDerivation, array, base, Cabal, containers, directory, filepath
, lib, mtl, process
}:
mkDerivation {
pname = "happy";
version = "1.19.8";
sha256 = "deadbeef";
isLibrary = false;
isExecutable = true;
setupHaskellDepends = [ base Cabal directory filepath ];
executableHaskellDepends = [ array base containers mtl ];
testHaskellDepends = [ base process ];
homepage = "https://www.haskell.org/happy/";
description = "Happy is a parser generator for Haskell";
license = lib.licenses.bsd2;
mainProgram = "happy";
}