3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
459 B
Nix
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 ];
|
|
};
|
|
})
|