nixpkgs/pkgs/development/libraries/haskell/grid/default.nix
Joachim Fasting 9f9744f6d6 haskell-grid: new expression
Test-suite fails to compile, set doCheck=false.
2014-11-28 23:11:39 +01:00

23 lines
641 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, cereal, QuickCheck, testFramework
, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "grid";
version = "7.6.7";
sha256 = "1sdm47y9hbqn40bfi4fssnbrhksca7gdkgpqvz1gd2lqs729i1nf";
buildDepends = [ cereal ];
testDepends = [
QuickCheck testFramework testFrameworkQuickcheck2
];
doCheck = false;
meta = {
homepage = "https://github.com/mhwombat/grid";
description = "Tools for working with regular grids (graphs, lattices)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})