summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/bmp/default.nix
blob: 705b462a6d52bd9d7981fb05c50bbac337a1dc93 (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.1.1";
  sha256 = "0s5srqkaccrwh9gsxn9kmyh4jf0qf40ix8ipi0b70fbbffr97hmk";
  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 ];
  };
})