packages feed

cabal2nix-2.8.2: test/golden-test-cases/matrices.nix.golden

{ mkDerivation, base, criterion, deepseq, fetchurl, primitive
, tasty, tasty-hunit, tasty-quickcheck, vector
}:
mkDerivation {
  pname = "matrices";
  version = "0.4.5";
  src = fetchurl {
    url = "http://example.org/";
    sha256 = "abc";
  };
  libraryHaskellDepends = [ base deepseq primitive vector ];
  testHaskellDepends = [
    base tasty tasty-hunit tasty-quickcheck vector
  ];
  benchmarkHaskellDepends = [ base criterion vector ];
  description = "native matrix based on vector";
  license = stdenv.lib.licenses.bsd3;
}