cabal2nix-2.9.3: test/golden-test-cases/algebraic-graphs.nix.golden
{ mkDerivation, array, base, containers, criterion, extra
, QuickCheck, stdenv
}:
mkDerivation {
pname = "algebraic-graphs";
version = "0.0.5";
sha256 = "deadbeef";
libraryHaskellDepends = [ array base containers ];
testHaskellDepends = [ base containers extra QuickCheck ];
benchmarkHaskellDepends = [ base containers criterion ];
homepage = "https://github.com/snowleopard/alga";
description = "A library for algebraic graph construction and transformation";
license = stdenv.lib.licenses.mit;
}