about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/binary/0.6.0.0.nix
blob: 01e909212e883cf9158347e88c372edf186d974f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "binary";
  version = "0.6.0.0";
  sha256 = "0p72w7f9nn19g2wggsh8x4z7y9s174f3drz9a5ln4x7h554swcxv";
  meta = {
    homepage = "https://github.com/kolmodin/binary";
    description = "Binary serialisation for Haskell values using lazy ByteStrings";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})