cabal2nix-2.8.2: test/golden-test-cases/poly-arity.nix.golden
{ mkDerivation, base, constraints, fetchurl }:
mkDerivation {
pname = "poly-arity";
version = "0.1.0";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [ base constraints ];
description = "Tools for working with functions of undetermined arity";
license = stdenv.lib.licenses.bsd3;
}