summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/repa-io/default.nix
blob: afb0b99cfa2208dfb7d74b048d072eafe799be18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, bmp, repa, repaBytestring}:

cabal.mkDerivation (self : {
  pname = "repa-io";
  version = "2.0.0.3";
  sha256 = "1p8h2855jv8nnvf9vq2ywrmm9qk9qdqy6yqr4dj9p90kfcqxgw2g";
  propagatedBuildInputs = [bmp repa repaBytestring];
  meta = {
    description = "Read and write Repa arrays in various formats";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})