3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/bmp/1.2.2.1.nix
Peter Simons 6dfa1da45f haskell-bmp: add version 1.2.3.2
The new version is currently unused, though, because it compiles only
with GHC 7.6.1 or later.
2012-11-27 15:05:43 +01:00

16 lines
459 B
Nix

{ cabal, binary }:
cabal.mkDerivation (self: {
pname = "bmp";
version = "1.2.2.1";
sha256 = "0yxkkvpgavk9im9i9f6zpzc1n5nj2g4qsk4ck51aqz2fv6z1rhiy";
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 ];
};
})