cabal2nix-2.9.3: test/golden-test-cases/netpbm.nix.golden
{ mkDerivation, attoparsec, attoparsec-binary, base, bytestring
, criterion, hspec, HUnit, stdenv, storable-record
, unordered-containers, vector, vector-th-unbox
}:
mkDerivation {
pname = "netpbm";
version = "1.0.2";
sha256 = "deadbeef";
libraryHaskellDepends = [
attoparsec attoparsec-binary base bytestring storable-record
unordered-containers vector vector-th-unbox
];
testHaskellDepends = [ base bytestring hspec HUnit vector ];
benchmarkHaskellDepends = [ base bytestring criterion ];
homepage = "https://github.com/nh2/haskell-netpbm";
description = "Loading PBM, PGM, PPM image files";
license = stdenv.lib.licenses.mit;
}