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

cabal.mkDerivation (self: {
  pname = "bmp";
  version = "1.2.5.2";
  sha256 = "0f88f2ynm1fpzbjijy5fa8blfrdv42h5h28hfjlpd4fp0h96in5x";
  buildDepends = [ binary ];
  jailbreak = true;
  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 ];
  };
})