nixpkgs/pkgs/development/libraries/haskell/bmp/default.nix
Peter Simons 9548648154 bmp: updated to version 1.1.2.1
svn path=/nixpkgs/trunk/; revision=28332
2011-08-07 22:02:05 +00:00

19 lines
539 B
Nix

{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
];
};
})