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

cabal.mkDerivation (self : {
  pname = "bmp";
  version = "1.1.1.2";
  sha256 = "1hxsl9gip5icjbmr5y48nkb10csqwzcswssqfaq6cqwnfhpi7813";
  propagatedBuildInputs = [binary];
  meta = {
    description = "Read and write uncompressed BMP image files";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})