packages feed

cabal2nix-2.8.2: test/golden-test-cases/proto-lens-optparse.nix.golden

{ mkDerivation, base, fetchurl, optparse-applicative, proto-lens
, text
}:
mkDerivation {
  pname = "proto-lens-optparse";
  version = "0.1.0.4";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [
    base optparse-applicative proto-lens text
  ];
  homepage = "https://github.com/google/proto-lens";
  description = "Adapting proto-lens to optparse-applicative ReadMs";
  license = stdenv.lib.licenses.bsd3;
}