summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bmp/1.2.3.4.nix
blob: 404229cf76366f80f417259f9cee2e5c6b163767 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, binary }:

cabal.mkDerivation (self: {
  pname = "bmp";
  version = "1.2.3.4";
  sha256 = "134nfchsw4q1k3kr09i5w8jxbr659as4523gs5m2dch15wrmrhf6";
  buildDepends = [ binary ];
  meta = {
    homepage = "http://code.ouroborus.net/bmp";
    description = "Read and write uncompressed BMP image files";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})