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