packages feed

cabal2nix-2.16.0: test/golden-test-cases/ReadArgs.nix.golden

{ mkDerivation, base, hspec, lib, system-filepath, text }:
mkDerivation {
  pname = "ReadArgs";
  version = "1.2.3";
  sha256 = "deadbeef";
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [ base system-filepath text ];
  executableHaskellDepends = [ base system-filepath text ];
  testHaskellDepends = [ base hspec system-filepath text ];
  homepage = "http://github.com/rampion/ReadArgs";
  description = "Simple command line argument parsing";
  license = lib.licenses.bsd3;
}