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

cabal.mkDerivation (self : {
  pname = "bmp";
  version = "1.1.2.1";
  sha256 = "01w0fbfzdmrfnmnkjkg9paagfkzsjn57rx7lf2npzp95rmljplkb";
  propagatedBuildInputs = [ binary ];
  meta = {
    homepage = "http://code.ouroborus.net/bmp";
    description = "Read and write uncompressed BMP image files.";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.stdenv.lib.platforms.haskellPlatforms;
    maintainers = [
      self.stdenv.lib.maintainers.simons
      self.stdenv.lib.maintainers.andres
    ];
  };
})