cabal2nix-2.16.0: test/golden-test-cases/turtle-options.nix.golden
{ mkDerivation, base, HUnit, lib, optional-args, parsec, text
, turtle
}:
mkDerivation {
pname = "turtle-options";
version = "0.1.0.4";
sha256 = "deadbeef";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base optional-args parsec text turtle ];
executableHaskellDepends = [ base turtle ];
testHaskellDepends = [ base HUnit parsec ];
homepage = "https://github.com/elaye/turtle-options#readme";
description = "Collection of command line options and parsers for these options";
license = lib.licenses.bsd3;
}