packages feed

cabal2nix-2.8.2: test/golden-test-cases/turtle-options.nix.golden

{ mkDerivation, base, fetchurl, HUnit, optional-args, parsec, text
, turtle
}:
mkDerivation {
  pname = "turtle-options";
  version = "0.1.0.4";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  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 = stdenv.lib.licenses.bsd3;
}