cabal2nix-2.8.2: test/golden-test-cases/tree-fun.nix.golden
{ mkDerivation, base, containers, fetchurl, mtl }:
mkDerivation {
pname = "tree-fun";
version = "0.8.1.0";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [ base containers mtl ];
description = "Library for functions pertaining to tree exploration and manipulation";
license = stdenv.lib.licenses.gpl3;
}